aboutsummaryrefslogtreecommitdiff
path: root/src/io_error.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/io_error.h')
-rw-r--r--src/io_error.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/io_error.h b/src/io_error.h
index c8974836..930ced10 100644
--- a/src/io_error.h
+++ b/src/io_error.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2012 The Music Player Daemon Project
+ * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -41,4 +41,11 @@ set_error_errno(GError **error_r)
g_strerror(errno));
}
+static inline GError *
+new_error_errno(void)
+{
+ return g_error_new_literal(errno_quark(), errno,
+ g_strerror(errno));
+}
+
#endif