diff options
Diffstat (limited to 'example/hello.c')
-rw-r--r-- | example/hello.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/hello.c b/example/hello.c index 82da26e..9e4099b 100644 --- a/example/hello.c +++ b/example/hello.c @@ -65,7 +65,7 @@ static int hello_read(const char *path, char *buf, size_t size, off_t offset, (void) fi; if(strcmp(path, hello_path) != 0) return -ENOENT; - + len = strlen(hello_str); if (offset < len) { if (offset + size > len) |