aboutsummaryrefslogtreecommitdiffstats
path: root/include/rfs.h
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2012-08-09 08:30:19 +0200
committerSimon Busch <morphis@gravedo.de>2012-08-09 08:30:19 +0200
commitd4f41d7dc21a8e977f78a3fb88c5b5774e7d33ed (patch)
treea8d810e8974785789af5ff5a4081686b49d696a6 /include/rfs.h
parent81660e380835e6fe6d23c92f5da8fbeeaffa39ea (diff)
downloadexternal_libsamsung-ipc-d4f41d7dc21a8e977f78a3fb88c5b5774e7d33ed.zip
external_libsamsung-ipc-d4f41d7dc21a8e977f78a3fb88c5b5774e7d33ed.tar.gz
external_libsamsung-ipc-d4f41d7dc21a8e977f78a3fb88c5b5774e7d33ed.tar.bz2
rfs: fix warnings about ignored return results from std. library functions
Diffstat (limited to 'include/rfs.h')
-rw-r--r--include/rfs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rfs.h b/include/rfs.h
index 6c2fa63..f9da1e8 100644
--- a/include/rfs.h
+++ b/include/rfs.h
@@ -63,8 +63,8 @@ void nv_data_md5_compute(void *data_p, int size, char *secret, void *hash);
void nv_data_md5_generate(struct ipc_client *client);
void nv_data_backup_create(struct ipc_client *client);
void nv_data_backup_restore(struct ipc_client *client);
-void nv_data_check(struct ipc_client *client);
-void nv_data_md5_check(struct ipc_client *client);
+int nv_data_check(struct ipc_client *client);
+int nv_data_md5_check(struct ipc_client *client);
int nv_data_read(struct ipc_client *client, int offset, int length, char *buf);
int nv_data_write(struct ipc_client *client, int offset, int length, char *buf);