1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 23:06:38 +02:00

db_old: fix warnings

This commit is contained in:
Adam
2016-07-25 19:34:59 -04:00
parent db4f38bcf5
commit 937b0e7185
+1 -1
View File
@@ -30,7 +30,7 @@ else \
#define getc_db(f) (fgetc((f)->fp))
#define read_db(f, buf, len) (fread((buf), 1, (len), (f)->fp))
#define read_buffer(buf, f) (read_db((f), (buf), sizeof(buf)) == sizeof(buf))
#define read_buffer(buf, f) ((read_db((f), (buf), sizeof(buf)) == sizeof(buf)) ? 0 : -1)
#define OLD_BI_PRIVATE 0x0001