fix(iobackend): missing header

This commit is contained in:
Matteo Flebus 2026-01-13 22:24:43 +01:00
parent 18b0ccee28
commit ae2ddf0771
2 changed files with 3 additions and 2 deletions

View file

@ -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;
}
}

View file

@ -2,6 +2,7 @@
#define IO_BACKEND_H
#include <sys/types.h>
#include "utils/args/args.h"
// Error codes
#define IOB_ERROR_GENERIC -1