]> diplodocus.org Git - nmh/blobdiff - uip/prompter.c
mhshow/test-charset: Use octal, not hex, in printf(1) format string.
[nmh] / uip / prompter.c
index e5170dfeecebe77c67b067f0538859a5c661b9c0..3a51dbe3cad0e1bfffc6070eae203d4ecebb99c7 100644 (file)
@@ -8,8 +8,9 @@
 #include <h/mh.h>
 #include <fcntl.h>
 #include <h/signals.h>
+#include "h/done.h"
 #include <h/utils.h>
-#include "../sbr/m_mktemp.h"
+#include "sbr/m_mktemp.h"
 #include <setjmp.h>
 
 #include <termios.h>
@@ -385,7 +386,7 @@ intrser (int i)
 static int
 chrcnv (char *cp)
 {
-    return (*cp != QUOTE ? *cp : m_atoi (++cp));
+    return *cp != QUOTE ? *cp : m_atoi(++cp);
 }