summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgottox@rootkit.lan <gottox@rootkit.lan>2007-12-15 01:24:09 +0100
committergottox@rootkit.lan <gottox@rootkit.lan>2007-12-15 01:24:09 +0100
commit92eb29f9eda3c1ed1adf52b2bb78a84ea37498f7 (patch)
treeb2bb1f734887b402442d8c6d25aefd6db0661d04
parentec12d3a3b2623baf4cd457fe9122ae081f2cd783 (diff)
Correcting newlines; Correcting Makefile
-rw-r--r--Makefile2
-rw-r--r--cmarkdown.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5189819..0a30bfa 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ ${OBJ}: config.mk
cmarkdown: ${OBJ}
@echo CC -o $@
- ${CC} -o $@ ${OBJ} ${LDFLAGS}
+ @${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
@echo cleaning
diff --git a/cmarkdown.c b/cmarkdown.c
index 851b156..8877d16 100644
--- a/cmarkdown.c
+++ b/cmarkdown.c
@@ -518,8 +518,6 @@ main(int argc, char *argv[]) {
eprint("Malloc failed.");
bsize = BUFFERSIZE;
buffer[0] = '\0';
-
-
p = buffer+strlen(buffer);
while((s = fread(p, sizeof(char),BUFFERSIZE, source))) {
p += s;