Loading error.c +5 −0 Original line number Diff line number Diff line Loading @@ -64,6 +64,11 @@ bool error_is_set(Error **errp) return (errp && *errp); } ErrorClass error_get_class(const Error *err) { return err->err_class; } const char *error_get_pretty(Error *err) { return err->msg; Loading error.h +5 −0 Original line number Diff line number Diff line Loading @@ -35,6 +35,11 @@ void error_set(Error **err, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ */ bool error_is_set(Error **err); /* * Get the error class of an error object. */ ErrorClass error_get_class(const Error *err); /** * Returns an exact copy of the error passed as an argument. */ Loading Loading
error.c +5 −0 Original line number Diff line number Diff line Loading @@ -64,6 +64,11 @@ bool error_is_set(Error **errp) return (errp && *errp); } ErrorClass error_get_class(const Error *err) { return err->err_class; } const char *error_get_pretty(Error *err) { return err->msg; Loading
error.h +5 −0 Original line number Diff line number Diff line Loading @@ -35,6 +35,11 @@ void error_set(Error **err, ErrorClass err_class, const char *fmt, ...) GCC_FMT_ */ bool error_is_set(Error **err); /* * Get the error class of an error object. */ ErrorClass error_get_class(const Error *err); /** * Returns an exact copy of the error passed as an argument. */ Loading