[PATCH 03/10] die: constify format string arg
Mike Frysinger
vapier at gentoo.org
Tue Apr 16 12:13:10 EST 2013
We only display this string, so there's no need for it to be writable.
Constify away!
Acked-by: David Gibson <David at gibson.dropbear.id.au>
Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
util.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util.h b/util.h
index 1f0ef47..b9c6d7e 100644
--- a/util.h
+++ b/util.h
@@ -23,7 +23,7 @@
* USA
*/
-static inline void __attribute__((noreturn)) die(char * str, ...)
+static inline void __attribute__((noreturn)) die(const char *str, ...)
{
va_list ap;
--
1.8.1.2
More information about the devicetree-discuss
mailing list