servers/app/drawing/interface/html5: fix gcc6 build.
This commit is contained in:
committed by
Augustin Cavalier
parent
ad9b83ad44
commit
6703dd2931
@@ -29,9 +29,9 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
|
||||||
#define TRACE(x...) debug_printf("HTML5HWInterface: "x)
|
#define TRACE(x...) debug_printf("HTML5HWInterface: " x)
|
||||||
#define TRACE_ALWAYS(x...) debug_printf("HTML5HWInterface: "x)
|
#define TRACE_ALWAYS(x...) debug_printf("HTML5HWInterface: "x)
|
||||||
#define TRACE_ERROR(x...) debug_printf("HTML5HWInterface: "x)
|
#define TRACE_ERROR(x...) debug_printf("HTML5HWInterface: " x)
|
||||||
|
|
||||||
|
|
||||||
struct callback_info {
|
struct callback_info {
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define TRACE(x...) debug_printf("WebHandler: "x)
|
#define TRACE(x...) debug_printf("WebHandler: " x)
|
||||||
#define TRACE_ERROR(x...) debug_printf("WebHandler: "x)
|
#define TRACE_ERROR(x...) debug_printf("WebHandler: "x)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -20,8 +20,8 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define TRACE(x...) debug_printf("WebServer: "x)
|
#define TRACE(x...) debug_printf("WebServer: " x)
|
||||||
#define TRACE_ERROR(x...) debug_printf("WebServer: "x)
|
#define TRACE_ERROR(x...) debug_printf("WebServer: " x)
|
||||||
|
|
||||||
|
|
||||||
WebServer::WebServer(BNetEndpoint *listener)
|
WebServer::WebServer(BNetEndpoint *listener)
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define TRACE(x...) debug_printf("WebWorker: "x)
|
#define TRACE(x...) debug_printf("WebWorker: " x)
|
||||||
#define TRACE_ERROR(x...) debug_printf("WebWorker: "x)
|
#define TRACE_ERROR(x...) debug_printf("WebWorker: " x)
|
||||||
|
|
||||||
|
|
||||||
WebWorker::WebWorker(BNetEndpoint *endpoint, WebHandler *handler)
|
WebWorker::WebWorker(BNetEndpoint *endpoint, WebHandler *handler)
|
||||||
|
|||||||
Reference in New Issue
Block a user