From a68b56c2c3879de6beba28ec3beb2dde1f41e31f Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Tue, 24 Apr 2012 13:05:19 -0400 Subject: [PATCH] AUTHORS --- AUTHORS | 2 ++ main.c | 2 +- util.c | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..9d57712 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,2 @@ +gmqcc brought to you by: +Dale Weiler diff --git a/main.c b/main.c index e24a7fe..88481e3 100644 --- a/main.c +++ b/main.c @@ -94,7 +94,7 @@ int main(int argc, char **argv) { } /* code specific switches */ - if (!strcmp(&argv[1][1], "fdarkplaces-string-table-bug")) { + if (!strcmp(&argv[1][1], "fdarkplaces-stringtablebug")) { opts_darkplaces_stringtablebug = 1; break; } diff --git a/util.c b/util.c index 136b12a..010de97 100644 --- a/util.c +++ b/util.c @@ -244,7 +244,7 @@ int util_getline(char **lineptr, size_t *n, FILE *stream) { if (!lineptr || !n || !stream) return -1; if (!*lineptr) { - if (!(*lineptr = mem_a((*n = 64)))) + if (!(*lineptr = mem_a((*n=64)))) return -1; } -- 2.39.2