summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2019-04-28 15:30:26 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2019-04-28 15:30:26 +0200
commit00fdbbdfff60ca9ffaf84b02c2c2931a8c4bc20f (patch)
treeb036a3a416939459dcf829e63deb8296a88b73b6
parentf04da05df887b23be411d0ad30837af40716c3fb (diff)
downloadcc4group-00fdbbdfff60ca9ffaf84b02c2c2931a8c4bc20f.tar.gz
cc4group-00fdbbdfff60ca9ffaf84b02c2c2931a8c4bc20f.zip
Change #include "zlib.h" to #include <zlib.h>
-rw-r--r--src/cc4group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cc4group.c b/src/cc4group.c
index 4a1bfa7..9f41b64 100644
--- a/src/cc4group.c
+++ b/src/cc4group.c
@@ -24,7 +24,7 @@
#include <stdio.h>
-#include "zlib.h"
+#include <zlib.h>
#define SET_ERROR(errorCauser, errorCode, errorFormatter, data) do { this->error.code = errorCode; this->error.formatter.formatter = errorFormatter; this->error.causer = errorCauser; this->error.method = __func__; } while(0)
#define SET_MESSAGE_ERROR(message) SET_ERROR(message, 1337, cc4group_messageFormatter, NULL)