From d4f41d7dc21a8e977f78a3fb88c5b5774e7d33ed Mon Sep 17 00:00:00 2001 From: Simon Busch Date: Thu, 9 Aug 2012 08:30:19 +0200 Subject: rfs: fix warnings about ignored return results from std. library functions --- include/rfs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/rfs.h') 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); -- cgit v1.1