aboutsummaryrefslogtreecommitdiffstats
path: root/include/rfs.h
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2014-07-26 22:25:51 +0200
committerPaul Kocialkowski <contact@paulk.fr>2014-07-26 22:25:51 +0200
commit2cdecfab4e695e1f48e7c302f21c46035160cae2 (patch)
tree9421f85e6ad529d392818887e4bc99e786f0cf5a /include/rfs.h
parent74e32c068d7e95275a0d237ecaf9f057e5d6f064 (diff)
downloadexternal_libsamsung-ipc-2cdecfab4e695e1f48e7c302f21c46035160cae2.zip
external_libsamsung-ipc-2cdecfab4e695e1f48e7c302f21c46035160cae2.tar.gz
external_libsamsung-ipc-2cdecfab4e695e1f48e7c302f21c46035160cae2.tar.bz2
Offset is unsigned int
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'include/rfs.h')
-rw-r--r--include/rfs.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/rfs.h b/include/rfs.h
index acfd018..daa3f61 100644
--- a/include/rfs.h
+++ b/include/rfs.h
@@ -70,11 +70,12 @@ int ipc_nv_data_backup_check(struct ipc_client *client);
int ipc_nv_data_backup(struct ipc_client *client);
int ipc_nv_data_restore(struct ipc_client *client);
void *ipc_nv_data_load(struct ipc_client *client);
-void *ipc_nv_data_read(struct ipc_client *client, size_t size, size_t offset);
+void *ipc_nv_data_read(struct ipc_client *client, size_t size,
+ unsigned int offset);
int ipc_nv_data_write(struct ipc_client *client, const void *data, size_t size,
- size_t offset);
+ unsigned int offset);
void *ipc_rfs_nv_read_item_response_setup(const void *data, size_t size,
- size_t offset);
+ unsigned int offset);
#endif