]> git.notmuchmail.org Git - notmuch/blobdiff - sprinter.h
sprinter: change integer method to use int64_t
[notmuch] / sprinter.h
index 182b1a8ba705e6493a1c5b51b7cc1518f71dfd8a..528d8a2db332bdaea6801424a15f7ca42db673ec 100644 (file)
@@ -33,7 +33,7 @@ typedef struct sprinter {
      */
     void (*string)(struct sprinter *, const char *);
     void (*string_len)(struct sprinter *, const char *, size_t);
-    void (*integer)(struct sprinter *, int);
+    void (*integer)(struct sprinter *, int64_t);
     void (*boolean)(struct sprinter *, bool);
     void (*null)(struct sprinter *);