diff options
author | agc <agc> | 2000-10-22 20:42:48 +0000 |
---|---|---|
committer | agc <agc> | 2000-10-22 20:42:48 +0000 |
commit | 125a1c3ec1c1f47b9ee38860fe096308d7757dd5 (patch) | |
tree | 38f0e136a066d51532a3103c9a3ef93b0f918c35 | |
parent | a7fbdb90a859a2012a8f25166a1a003db3ddeb0a (diff) | |
download | pkgsrc-125a1c3ec1c1f47b9ee38860fe096308d7757dd5.tar.gz |
Correct typos which resulted in a malformed command
-rw-r--r-- | lang/elk/files/stab-elf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/elk/files/stab-elf.c b/lang/elk/files/stab-elf.c index 433f2bc435a..4f1b8cd6dd2 100644 --- a/lang/elk/files/stab-elf.c +++ b/lang/elk/files/stab-elf.c @@ -1,4 +1,4 @@ -/* $NetBSD: stab-elf.c,v 1.2 2000/10/06 11:08:31 agc Exp $ */ +/* $NetBSD: stab-elf.c,v 1.3 2000/10/22 20:42:48 agc Exp $ */ /* * Copyright (c) 2000 Alistair G. Crooks. All rights reserved. @@ -36,7 +36,7 @@ __COPYRIGHT( "@(#) Copyright (c) 2000 \ The NetBSD Foundation, Inc. All rights reserved."); -__RCSID("$NetBSD: stab-elf.c,v 1.2 2000/10/06 11:08:31 agc Exp $"); +__RCSID("$NetBSD: stab-elf.c,v 1.3 2000/10/22 20:42:48 agc Exp $"); #endif #include <sys/types.h> @@ -74,7 +74,7 @@ Open_File_And_Snarf_Symbols (name) SYM **nextp; SYM *sp; - (void) snprintf(cmd, sizeof(cmd), "%s -g %s | %s '$2 == \"T\" { printf(\"%s %s\n\", $1 $3) }'", NM, name, AWK); + (void) snprintf(cmd, sizeof(cmd), "%s -g %s | %s '$2 == \"T\" { printf(\"%%s %%s\\n\", $1 $3) }'", NM, name, AWK); if ((pp = popen(cmd, "r")) == NULL) { Primitive_Error("can't open a.out file"); } |