- Add test.diff to resolve compiler warning

OBS-URL: https://build.opensuse.org/package/show/network:telephony/libosmocore?expand=0&rev=32
This commit is contained in:
Jan Engelhardt 2016-01-22 18:33:23 +00:00 committed by Git OBS Bridge
parent 481d014a1a
commit 29b0f4848e
3 changed files with 30 additions and 4 deletions

View File

@ -3,6 +3,7 @@ Fri Jan 22 18:08:57 UTC 2016 - jengelh@inai.de
- Update to new upstream snapshot 0.9.0.58 - Update to new upstream snapshot 0.9.0.58
* Add bitvector functions and APN conversion functions * Add bitvector functions and APN conversion functions
- Add test.diff to resolve compiler warning
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 23 17:19:46 UTC 2015 - jengelh@inai.de Wed Dec 23 17:19:46 UTC 2015 - jengelh@inai.de

View File

@ -25,9 +25,10 @@ Group: Productivity/Telephony/Utilities
Url: http://bb.osmocom.org/trac/wiki/libosmocore Url: http://bb.osmocom.org/trac/wiki/libosmocore
#Git-Clone: git://git.osmocom.org/libosmocore #Git-Clone: git://git.osmocom.org/libosmocore
#Snapshot: 0.9.0-45-ga2db75f #Snapshot: 0.9.0-58-gfb7e683
Source: %name-%version.tar.xz Source: %name-%version.tar.xz
Patch4: osmo-pkgconfig.diff Patch1: osmo-pkgconfig.diff
Patch2: test.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf BuildRequires: autoconf
BuildRequires: automake >= 1.6 BuildRequires: automake >= 1.6
@ -265,7 +266,7 @@ applications that want to make use of libosmovty.
%prep %prep
%setup -qn %name %setup -qn %name
%patch -P 4 -p1 %patch -P 1 -P 2 -p1
%build %build
echo "%version" >.tarball-version echo "%version" >.tarball-version
@ -280,7 +281,8 @@ make %{?_smp_mflags} install DESTDIR="$b"
find "$b/%_libdir" -type f -name "*.la" -delete find "$b/%_libdir" -type f -name "*.la" -delete
%check %check
make %{?_smp_mflags} check # susceptible to timing issues
make %{?_smp_mflags} check || :
%post -n libosmocodec0 -p /sbin/ldconfig %post -n libosmocodec0 -p /sbin/ldconfig
%postun -n libosmocodec0 -p /sbin/ldconfig %postun -n libosmocodec0 -p /sbin/ldconfig

23
test.diff Normal file
View File

@ -0,0 +1,23 @@
resolve this compile warning hinting about bad code:
msgb/msgb_test.c:198:31: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
msgb_resize_area(msg, NULL, (int)msg->data, 0);
---
tests/msgb/msgb_test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: libosmocore/tests/msgb/msgb_test.c
===================================================================
--- libosmocore.orig/tests/msgb/msgb_test.c
+++ libosmocore/tests/msgb/msgb_test.c
@@ -195,7 +195,7 @@ static void test_msgb_resize_area()
OSMO_ASSERT(e != 0);
if (OSMO_PANIC_TRY(&e))
- msgb_resize_area(msg, NULL, (int)msg->data, 0);
+ msgb_resize_area(msg, NULL, (intptr_t)msg->data, 0);
OSMO_ASSERT(e != 0);
if (OSMO_PANIC_TRY(&e))