]> git.sesse.net Git - bcachefs-tools-debian/blobdiff - linux/printbuf_userspace.c
Update bcachefs sources to 5963d1b1a4 bcacehfs: Fix bch2_get_alloc_in_memory_pos()
[bcachefs-tools-debian] / linux / printbuf_userspace.c
index df9567c5f5a9270933d605cc02f4c42d2f4b8fcd..0ae56ee1b9ad6bd80bf62fbc3cce25aba46318a6 100644 (file)
@@ -27,3 +27,8 @@ void prt_printf(struct printbuf *out, const char *fmt, ...)
        prt_vprintf(out, fmt, args);
        va_end(args);
 }
+
+void prt_u64(struct printbuf *out, u64 v)
+{
+       prt_printf(out, "%llu", v);
+}