chiark / gitweb /
word break now comes from the table
[disorder] / lib / printf.c
index df807edd6593c45f5a04f1b69baf0d974df44934..d52a1cc7fa595e8d6f860ccaa0ec5f0924534ba1 100644 (file)
@@ -33,6 +33,7 @@
 
 #include "printf.h"
 #include "sink.h"
+#include "vacopy.h"
 
 enum flags {
   f_thousands = 1,
@@ -144,6 +145,7 @@ static int check_integer(const struct conversion *c) {
   case l_intmax_t:
   case l_size_t:
   case l_longdouble:
+  case l_ptrdiff_t:
     return 0;
   default:
     return -1;