diff --git a/src/xstat/xstat_cm_test.c b/src/xstat/xstat_cm_test.c index bb1d5ad70e..011643551e 100644 --- a/src/xstat/xstat_cm_test.c +++ b/src/xstat/xstat_cm_test.c @@ -922,7 +922,7 @@ RunTheTest(struct cmd_syndesc *a_s, void *arock) */ if (debugging_on) printf("\nYawn, main thread just woke up. Cleaning things out...\n"); - code = xstat_cm_Cleanup(1); /*Get rid of malloc'ed data */ + xstat_cm_Cleanup(1); /*Get rid of malloc'ed data */ rx_Finalize(); return (0); diff --git a/src/xstat/xstat_fs_test.c b/src/xstat/xstat_fs_test.c index d1e1fa3d0a..ef2269c6d1 100644 --- a/src/xstat/xstat_fs_test.c +++ b/src/xstat/xstat_fs_test.c @@ -821,7 +821,7 @@ RunTheTest(struct cmd_syndesc *a_s, void *dummy) if (debugging_on) printf("\nYawn, main thread just woke up. Cleaning things out...\n"); - code = xstat_fs_Cleanup(1); /*Get rid of malloc'ed data */ + xstat_fs_Cleanup(1); /*Get rid of malloc'ed data */ rx_Finalize(); return (0); }