1
1
mirror of https://github.com/jrbrtsn/ban2fail synced 2024-06-16 11:58:01 +00:00

Fix typos in ez_libdb & ez_libz

This commit is contained in:
John D. Robertson 2020-09-15 11:51:53 -04:00
parent 4ad2ea2af9
commit 1bc22cab6c
6 changed files with 4 additions and 6 deletions

@ -17,7 +17,6 @@ src := \
cntry.c \ cntry.c \
dynstack.c \ dynstack.c \
es.c \ es.c \
ez_es.c \
ez_libc.c \ ez_libc.c \
ez_libdb.c \ ez_libdb.c \
ez_libpthread.c \ ez_libpthread.c \

@ -17,7 +17,6 @@ src := \
cntry.c \ cntry.c \
dynstack.c \ dynstack.c \
es.c \ es.c \
ez_es.c \
ez_libc.c \ ez_libc.c \
ez_libdb.c \ ez_libdb.c \
ez_libpthread.c \ ez_libpthread.c \

@ -23,7 +23,7 @@
#include "ez_libdb.h" #include "ez_libdb.h"
/***************************************************/ /***************************************************/
ez_proto (int, create, ez_proto (int, db_create,
DB **dbp, DB **dbp,
DB_ENV *dbenv, DB_ENV *dbenv,
u_int32_t flags) u_int32_t flags)

@ -31,7 +31,7 @@
extern "C" { extern "C" {
#endif #endif
ez_proto (int, create, ez_proto (int, db_create,
DB **dbp, DB **dbp,
DB_ENV *dbenv, DB_ENV *dbenv,
u_int32_t flags); u_int32_t flags);

@ -214,7 +214,7 @@ ez_proto (char*, gzgets,
} }
/***************************************************/ /***************************************************/
ez_proto (z_off_t, _ez_gztell, ez_proto (z_off_t, gztell,
gzFile file) gzFile file)
{ {
z_off_t rtn= gztell(file); z_off_t rtn= gztell(file);

@ -99,7 +99,7 @@ ez_proto (z_off_t, gzseek,
_ez_gzseek(__VA_ARGS__) _ez_gzseek(__VA_ARGS__)
#endif #endif
ez_proto (z_off_t, _ez_gztell, ez_proto (z_off_t, gztell,
gzFile file); gzFile file);
#ifdef DEBUG #ifdef DEBUG
# define ez_gztell(...) \ # define ez_gztell(...) \