Accepting request 737767 from home:StefanBruens:branches:openSUSE:Factory

- Fix glpk-no_random_return.patch to return a value for a non-void
  function.

OBS-URL: https://build.opensuse.org/request/show/737767
OBS-URL: https://build.opensuse.org/package/show/science/glpk?expand=0&rev=46
This commit is contained in:
Martin Pluskal 2019-10-13 07:25:07 +00:00 committed by Git OBS Bridge
parent d61d81053d
commit aae8484161
2 changed files with 7 additions and 1 deletions

View File

@ -6,7 +6,7 @@ Index: glpk-4.65/src/draft/glpios01.c
IOSCUT *ios_find_row(IOSPOOL *pool, int i)
{ /* find row (constraint) in the cut pool */
xassert(0);
+ return;
+ return 0;
}
#else
IOSCUT *ios_find_row(IOSPOOL *pool, int i)

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sat Oct 12 11:49:46 UTC 2019 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
- Fix glpk-no_random_return.patch to return a value for a non-void
function.
-------------------------------------------------------------------
Fri Dec 21 10:08:56 UTC 2018 - Martin Pluskal <mpluskal@suse.com>