0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

Fix bug with linux build

...Screw it.  %llu it is.
This commit is contained in:
jp9000 2014-02-14 16:12:45 -07:00
parent 971faf09d5
commit 1ed146f6aa

View File

@ -15,7 +15,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
#include <inttypes.h>
#include <sstream>
#include <util/bmem.h>
#include <util/dstr.h>
@ -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;
}