Skip to content

Commit

Permalink
fix unused variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-hx committed Dec 12, 2024
1 parent 4ee3b79 commit a7fda73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_unit_put_fast_fail.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ static int gr_teardown(void **unused)
system(rmCmd);
#else
sprintf(rmCmd, "rm -rf %s", testDir.c_str());
int ret = system(rmCmd);
(void)system(rmCmd);
#endif
return 0;
}
Expand Down

0 comments on commit a7fda73

Please sign in to comment.