diff options
author | Thorsten Horstmann <thorsten.horstmann@web.de> | 2015-02-24 20:51:18 +0800 |
---|---|---|
committer | Thorsten Horstmann <thorsten.horstmann@web.de> | 2015-02-24 20:51:18 +0800 |
commit | ab9439519ac3ca1ce5b273587544da3494f87308 (patch) | |
tree | 0d26af69620cabf404afe2fac5e66a924323578f /svr-x11fwd.c | |
parent | abeb9d64a398cb38348f95b8d93b888f4e726cd0 (diff) |
Fix for old compilers, variable declarations at beginning of functions
and /**/ comments
Diffstat (limited to 'svr-x11fwd.c')
-rw-r--r-- | svr-x11fwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svr-x11fwd.c b/svr-x11fwd.c index ceca26a..6400c06 100644 --- a/svr-x11fwd.c +++ b/svr-x11fwd.c @@ -175,7 +175,7 @@ void x11cleanup(struct ChanSess *chansess) { m_free(chansess->x11authprot); m_free(chansess->x11authcookie); - TRACE(("chansess %p", chansess)) + TRACE(("chansess %p", (void*)chansess)) if (chansess->x11listener != NULL) { remove_listener(chansess->x11listener); chansess->x11listener = NULL; |