From 1ed146f6aa67e14dbcf9acea6c839bf7c1cb36b2 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Fri, 14 Feb 2014 16:12:45 -0700 Subject: [PATCH] Fix bug with linux build ...Screw it. %llu it is. --- obs/obs-app.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/obs/obs-app.cpp b/obs/obs-app.cpp index 2ba8b6d0d..ab9691a93 100644 --- a/obs/obs-app.cpp +++ b/obs/obs-app.cpp @@ -15,7 +15,6 @@ along with this program. If not, see . ******************************************************************************/ -#include #include #include #include @@ -293,6 +292,7 @@ int main(int argc, char *argv[]) blog(LOG_ERROR, "%s", error); } - blog(LOG_INFO, "Number of memory leaks: %" PRIu64, bnum_allocs()); + blog(LOG_INFO, "Number of memory leaks: %llu", + (unsigned long long int)bnum_allocs()); return ret; }