mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 11:43:04 +01:00
(From OE-Core rev: 6de454e0a66e832571b23406fdc4b9c4e65073d0) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
43 lines
1.3 KiB
Diff
43 lines
1.3 KiB
Diff
This patch fixes these new errors:
|
|
|
|
| XpNotifyPdm.c:234:10: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
|
|
| XpNotifyPdm.c:271:10: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
|
|
| XpNotifyPdm.c:286:10: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
|
|
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Saul Wold <sgw@linux.intel.com>
|
|
|
|
Index: libXp-1.0.1/src/XpNotifyPdm.c
|
|
===================================================================
|
|
--- libXp-1.0.1.orig/src/XpNotifyPdm.c
|
|
+++ libXp-1.0.1/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;
|