summaryrefslogtreecommitdiff
path: root/plugins/wimaxasncp/wimaxasncp_dict.l
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/wimaxasncp/wimaxasncp_dict.l')
-rw-r--r--plugins/wimaxasncp/wimaxasncp_dict.l6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/wimaxasncp/wimaxasncp_dict.l b/plugins/wimaxasncp/wimaxasncp_dict.l
index 3953f1fe96..cec21a0eed 100644
--- a/plugins/wimaxasncp/wimaxasncp_dict.l
+++ b/plugins/wimaxasncp/wimaxasncp_dict.l
@@ -274,7 +274,7 @@ since_attr since=\042
for (e = ents.next; e; e = e->next) {
if (strcmp(e->name,yytext) == 0) {
yyin = wimaxasncp_dict_open(sys_dir,e->file);
- D(("entity: %s filename: %s yyin: %p\n",e->name,e->file,yyin));
+ D(("entity: %s filename: %s yyin: %p\n",e->name,e->file,(void*)yyin));
if (!yyin) {
yyterminate();
} else {
@@ -298,7 +298,7 @@ since_attr since=\042
if (!yyin) yyterminate();
fclose(yyin);
- D(("closing: %p %i\n",yyin,include_stack_ptr));
+ D(("closing: %p %i\n",(void*)yyin,include_stack_ptr));
if ( --include_stack_ptr < 0 ) {
D(("DONE READING\n"));
@@ -600,7 +600,7 @@ static FILE *wimaxasncp_dict_open(
fh = ws_fopen(fname,"r");
- D(("fname: %s fh: %p\n",fname,fh));
+ D(("fname: %s fh: %p\n",fname,(void*)fh));
g_free(fname);