21 lines
466 B
Diff
21 lines
466 B
Diff
--- m4-1.4.1/src/m4.c.sec Tue Feb 13 13:27:07 2001
|
|
+++ m4-1.4.1/src/m4.c Tue Feb 13 13:35:49 2001
|
|
@@ -369,7 +369,7 @@
|
|
|
|
case 'o':
|
|
if (!debug_set_output (optarg))
|
|
- error (0, errno, optarg);
|
|
+ error (0, errno, "%s", optarg);
|
|
break;
|
|
|
|
case 's':
|
|
@@ -466,7 +466,7 @@
|
|
fp = path_search (argv[optind]);
|
|
if (fp == NULL)
|
|
{
|
|
- error (0, errno, argv[optind]);
|
|
+ error (0, errno, "%s", argv[optind]);
|
|
continue;
|
|
}
|
|
else
|