generic-pc: fix build with gcc 4.8

This commit is contained in:
Stefan Seyfried
2013-11-01 20:38:30 +01:00
parent 04ae3878cc
commit cc973092ed

View File

@@ -1,4 +1,5 @@
#include <cstring> #include <cstring>
#include <cstdlib>
#include <unistd.h> #include <unistd.h>
#include "init_lib.h" #include "init_lib.h"
@@ -50,5 +51,6 @@ void shutdown_td_api()
lt_info("%s, initialized = %d\n", __func__, (int)initialized); lt_info("%s, initialized = %d\n", __func__, (int)initialized);
if (glfb) if (glfb)
delete glfb; delete glfb;
glfb = NULL;
initialized = false; initialized = false;
} }