remove some warnings
This commit is contained in:
parent
402c143af9
commit
c33b4a7d5f
16
vnc/vnc.c
16
vnc/vnc.c
@ -21,6 +21,20 @@
|
|||||||
#include "vnc.h"
|
#include "vnc.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
|
#define LLOG_LEVEL 1
|
||||||
|
#define LLOGLN(_level, _args) \
|
||||||
|
do \
|
||||||
|
{ \
|
||||||
|
if (_level < LLOG_LEVEL) \
|
||||||
|
{ \
|
||||||
|
g_write("xrdp:vnc [%10.10u]: ", g_time3()); \
|
||||||
|
g_writeln _args ; \
|
||||||
|
} \
|
||||||
|
} \
|
||||||
|
while (0)
|
||||||
|
|
||||||
|
#define AS_LOG_MESSAGE log_message
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/* taken from vncauth.c */
|
/* taken from vncauth.c */
|
||||||
void DEFAULT_CC
|
void DEFAULT_CC
|
||||||
@ -309,7 +323,6 @@ lib_mod_event(struct vnc *v, int msg, long param1, long param2,
|
|||||||
int chanid;
|
int chanid;
|
||||||
int flags;
|
int flags;
|
||||||
char *data;
|
char *data;
|
||||||
char text[256];
|
|
||||||
|
|
||||||
error = 0;
|
error = 0;
|
||||||
make_stream(s);
|
make_stream(s);
|
||||||
@ -912,7 +925,6 @@ lib_palette_update(struct vnc *v)
|
|||||||
int DEFAULT_CC
|
int DEFAULT_CC
|
||||||
lib_bell_trigger(struct vnc *v)
|
lib_bell_trigger(struct vnc *v)
|
||||||
{
|
{
|
||||||
struct stream *s;
|
|
||||||
int error;
|
int error;
|
||||||
|
|
||||||
error = v->server_bell_trigger(v);
|
error = v->server_bell_trigger(v);
|
||||||
|
Loading…
Reference in New Issue
Block a user