diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2016-10-09 14:19:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-09 14:19:33 -0700 |
commit | 039b9fa28ff1a7804a9fb81e18ec436e42d59193 (patch) | |
tree | cd422c4a0e044ac147fe6587a46fc2b4e86727b8 /example/timefs2.c | |
parent | 9f19d71a766af5881cf763e6ce8d6c1bafe8ada5 (diff) | |
parent | 52dec7ffdd36074017a3f00d54acc2901b73ea67 (diff) | |
download | libfuse-039b9fa28ff1a7804a9fb81e18ec436e42d59193.tar.gz |
Merge pull request #80 from libfuse/master-proposed
Diffstat (limited to 'example/timefs2.c')
-rw-r--r-- | example/timefs2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/timefs2.c b/example/timefs2.c index 1d3cbd5..3194230 100644 --- a/example/timefs2.c +++ b/example/timefs2.c @@ -291,8 +291,8 @@ static void* update_fs(void *data) { now = localtime(&t); assert(now != NULL); - file_size= strftime(file_contents, MAX_STR_LEN, - "The current time is %H:%M:%S\n", now); + file_size = strftime(file_contents, MAX_STR_LEN, + "The current time is %H:%M:%S\n", now); assert(file_size != 0); if (!options.no_notify && lookup_cnt) { /* Only send notification if the kernel |