diff --git a/libc3/error.h b/libc3/error.h
index 9f5f607..abda049 100644
--- a/libc3/error.h
+++ b/libc3/error.h
@@ -19,7 +19,7 @@
#define error(message) \
do { \
assert(! message); \
- errx(1, "%s: %s", __FUNCTION__, message); \
+ errx(1, "%s", message); \
} while (0)
void error_print (s_buf *buf, const s_error_handler *error_handler);