enabled debugging symbols in Make, used NULL instead of 0 introduced for a typo

This commit is contained in:
antirez
2010-07-07 13:28:26 +02:00
parent 6a0775fd61
commit 42ba034ea4
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
linenoise_example: linenoise.c example.c
$(CC) -Wall -W -Os -o linenoise_example linenoise.c example.c
$(CC) -Wall -W -Os -g -o linenoise_example linenoise.c example.c
clean:
rm -f linenoise_example

View File

@@ -396,7 +396,7 @@ int linenoiseHistoryAdd(const char *line) {
char *linecopy;
if (history_max_len == 0) return 0;
if (history == 0) {
if (history == NULL) {
history = malloc(sizeof(char*)*history_max_len);
if (history == NULL) return 0;
memset(history,0,(sizeof(char*)*history_max_len));