Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure all error codes are correctly returned when using dbdctl #22

Merged
merged 1 commit into from
Mar 7, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ensures all error conditions are correctly returned to the user.
Signed-off-by: Chris Lapa <[email protected]>
  • Loading branch information
chrislapa committed Mar 7, 2016
commit fc7cd3a8423c01b1c934e2a0a4d954076e39b7fa
2 changes: 1 addition & 1 deletion app/dbdctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -337,5 +337,5 @@ int main(int argc, char **argv){

if(ret) perror("driver returned an error performing specified action. check dmesg for more info");

return 0;
return ret;
}