Markus Armbruster
565f65d271
error: Use error_report_err() where appropriate
Coccinelle semantic patch:
@@
expression E;
@@
- error_report("%s", error_get_pretty(E));
- error_free(E);
+ error_report_err(E);
@@
expression E, S;
@@
- error_report("%s", error_get_pretty(E));
+ error_report_err(E);
(
exit(S);
|
abort();
)
Trivial manual touch-ups in block/sheepdog.c.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
2015-02-18 10:51:09 +01:00
..
2014-12-15 12:21:02 +01:00
2015-02-18 10:51:09 +01:00
2015-01-26 12:22:44 +01:00
2014-12-14 16:34:29 -06:00
2014-12-16 18:43:19 +00:00
2015-01-26 12:22:44 +01:00
2015-01-26 12:22:44 +01:00
2014-12-15 12:21:01 +01:00
2015-01-20 15:19:34 +00:00
2015-02-12 21:21:38 -08:00