Commit 3781e798 authored by Robert David Graham's avatar Robert David Graham
Browse files

banner

parent 10b771eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ endif
CC = gcc

DEFINES = 
CFLAGS = -g $(FLAGS2) $(INCLUDES) $(DEFINES) -Wall -O3 -Wno-format
CFLAGS = -g -ggdb $(FLAGS2) $(INCLUDES) $(DEFINES) -Wall -O3 -Wno-format
.SUFFIXES: .c .cpp

# just compile everything in the 'src' directory. Using this technique
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ banner1_parse(
        } else {
            size_t len = length;
            if (len > banner_max - *banner_offset)
                len = banner_max = *banner_offset;
                len = banner_max - *banner_offset;
            memcpy(banner + *banner_offset, px, len);
            (*banner_offset) += (unsigned)len;
        }