diff options
| author | gkostka <kostka.grzegorz@gmail.com> | 2014-05-20 21:34:12 +0000 |
|---|---|---|
| committer | gkostka <kostka.grzegorz@gmail.com> | 2014-05-20 21:34:12 +0000 |
| commit | b6a7544b8c5b52b1d13f3b9c7c94cdabb6bf5ed1 (patch) | |
| tree | 997cc5bca6125eae4cd60e66c46a4f1cca6a1677 /fs_test/lwext4_server.c | |
| parent | 1f5edc9325fc4427ebf3de5a4b1a21e38e6cc211 (diff) | |
Pedanitic warning check fixes. Pointer arithmetic, anonymus unions etc
Diffstat (limited to 'fs_test/lwext4_server.c')
| -rw-r--r-- | fs_test/lwext4_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs_test/lwext4_server.c b/fs_test/lwext4_server.c index 53ee5e2..00e9196 100644 --- a/fs_test/lwext4_server.c +++ b/fs_test/lwext4_server.c @@ -453,7 +453,7 @@ int _mount_point_stats(char *p) rc = ext4_mount_point_stats(mount_point, &stats);
if(rc != EOK)
- return;
+ return rc;
if(verbose){
printf("\tinodes_count = %d\n", stats.inodes_count);
|
