aboutsummaryrefslogtreecommitdiff
path: root/lib/base/ebase.cpp
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-06-08 13:36:59 +0200
committerghost <andreas.monzner@multimedia-labs.de>2010-06-08 14:33:17 +0200
commit6667d88310f66513676c842afe91a2e13dadefaa (patch)
treeab492883492f00f2f9f49bcc0436922efd0173d3 /lib/base/ebase.cpp
parent45c627a80e5387e29aa9c7ca071d310cd3a7e823 (diff)
downloadenigma2-6667d88310f66513676c842afe91a2e13dadefaa.tar.gz
enigma2-6667d88310f66513676c842afe91a2e13dadefaa.zip
fix compiler warnings
Diffstat (limited to 'lib/base/ebase.cpp')
-rw-r--r--lib/base/ebase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base/ebase.cpp b/lib/base/ebase.cpp
index c84f28b8..700cce36 100644
--- a/lib/base/ebase.cpp
+++ b/lib/base/ebase.cpp
@@ -165,7 +165,7 @@ void eMainloop::removeSocketNotifier(eSocketNotifier *sn)
return;
}
for (i = notifiers.begin(); i != notifiers.end(); ++i)
- eDebug("fd=%d, sn=%d", i->second->getFD(), (void*)i->second);
+ eDebug("fd=%d, sn=%p", i->second->getFD(), (void*)i->second);
eFatal("removed socket notifier which is not present, fd=%d", fd);
}