diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-09-08 23:16:55 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-09-08 23:16:55 +0200 |
commit | 0f5f10ab571576e840a9568669bd49f5cdf7c0ac (patch) | |
tree | e7dcca84ef8c114eebadf70818ca20dadbbe3ed2 /lib/fs.c | |
parent | faa1a1910f032c6c3bbc7b8da36332c3f8f434d0 (diff) |
fs: fix file seek() return value
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'lib/fs.c')
-rw-r--r-- | lib/fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -216,7 +216,7 @@ ut_fs_seek(struct ut_state *s, uint32_t off, struct json_object *args) if (res < 0) err_return(errno); - return json_object_new_int64(res); + return json_object_new_boolean(true); } static struct json_object * |