scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit bd37f2adbf5efc9fbd155c8d919a6611dfa64fb8
parent 2fbb1d663cc2194fd23937459c5b598f2fab65ac
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 28 Nov 2017 09:26:01 +0000

[nm] Fix error message

The newline was missed.

Diffstat:
Mnm/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nm/main.c b/nm/main.c @@ -218,7 +218,7 @@ doit(char *fname) else if (archive(fname, fp)) ar(fname, fp); else - fprintf(stderr, "nm: %s: File format not recognized", fname); + fprintf(stderr, "nm: %s: File format not recognized\n", fname); if (fclose(fp) != EOF) return;