[PATCH libXp] fix build: Return 0 instead of NULL in XpGetPdmStartParams()
Tobias Droste
tdroste at gmx.de
Tue Nov 22 16:47:18 PST 2011
Status is defined as int -> NULL is not a valid return value
Signed-off-by: Tobias Droste <tdroste at gmx.de>
---
src/XpNotifyPdm.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/XpNotifyPdm.c b/src/XpNotifyPdm.c
index c1ceb8e..579923c 100644
--- a/src/XpNotifyPdm.c
+++ b/src/XpNotifyPdm.c
@@ -231,7 +231,7 @@ XpGetPdmStartParams (
/*
* Error - cannot determine or establish a selection_display.
*/
- return( (Status) NULL );
+ return( (Status) 0 );
}
/*
@@ -268,7 +268,7 @@ XpGetPdmStartParams (
XCloseDisplay( *selection_display );
*selection_display = (Display *) NULL;
}
- return( (Status) NULL );
+ return( (Status) 0 );
}
status = XmbTextListToTextProperty( *selection_display, list, 6,
@@ -283,7 +283,7 @@ XpGetPdmStartParams (
XCloseDisplay( *selection_display );
*selection_display = (Display *) NULL;
}
- return( (Status) NULL );
+ return( (Status) 0 );
}
*type = text_prop.encoding;
--
1.7.3.4
More information about the xorg-devel
mailing list