fix(iobackend): missing header
This commit is contained in:
parent
18b0ccee28
commit
ae2ddf0771
2 changed files with 3 additions and 2 deletions
|
|
@ -125,7 +125,7 @@ int iob_config_from_args(struct args_options *args, struct iob_context *ctx)
|
|||
break;
|
||||
|
||||
default:
|
||||
return -1;
|
||||
return IOB_ERROR_GENERIC;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -2,6 +2,7 @@
|
|||
#define IO_BACKEND_H
|
||||
|
||||
#include <sys/types.h>
|
||||
#include "utils/args/args.h"
|
||||
|
||||
// Error codes
|
||||
#define IOB_ERROR_GENERIC -1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue