diff options
| author | Luiz Capitulino | 2013-06-07 20:24:49 +0200 |
|---|---|---|
| committer | Luiz Capitulino | 2013-06-17 17:01:14 +0200 |
| commit | 54028d7542cffe97c4685994baac66988c4b7db9 (patch) | |
| tree | 7f14c39b8ff0a91cc22d6e6cd512d97f1592eac5 /util/error.c | |
| parent | target-i386: fix over 80 chars warnings (diff) | |
| download | qemu-54028d7542cffe97c4685994baac66988c4b7db9.tar.gz qemu-54028d7542cffe97c4685994baac66988c4b7db9.tar.xz qemu-54028d7542cffe97c4685994baac66988c4b7db9.zip | |
error: add error_setg_file_open() helper
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'util/error.c')
| -rw-r--r-- | util/error.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util/error.c b/util/error.c index 519f6b6ce0..53b04354ae 100644 --- a/util/error.c +++ b/util/error.c @@ -71,6 +71,11 @@ void error_set_errno(Error **errp, int os_errno, ErrorClass err_class, *errp = err; } +void error_setg_file_open(Error **errp, int os_errno, const char *filename) +{ + error_setg_errno(errp, os_errno, "Could not open '%s'", filename); +} + Error *error_copy(const Error *err) { Error *err_new; |
