aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorAdrian Robert2009-09-18 21:12:09 +0000
committerAdrian Robert2009-09-18 21:12:09 +0000
commitcff111562706d45e70ee6921e1cc3fdfaf9daa87 (patch)
tree9da8c8300deedaf964c53cdd027dd2fcc7dec51f /src/emacs.c
parentf9245b5d0fd9b7c57e10b15aa3417922fc5bdc22 (diff)
downloademacs-cff111562706d45e70ee6921e1cc3fdfaf9daa87.tar.gz
emacs-cff111562706d45e70ee6921e1cc3fdfaf9daa87.zip
* emacs.c (main) [HAVE_NS]: fix error printf in daemon case.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 8374a32669d..1afcd08fb68 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1180,7 +1180,7 @@ main (int argc, char **argv)
1180 argv[skip_args] = fdStr; 1180 argv[skip_args] = fdStr;
1181 1181
1182 execv (argv[0], argv); 1182 execv (argv[0], argv);
1183 fprintf (stderr, "emacs daemon: exec failed: %d\t%d\n", errno); 1183 fprintf (stderr, "emacs daemon: exec failed: %d\n", errno);
1184 exit (1); 1184 exit (1);
1185 } 1185 }
1186 1186