
El 02/01/13 07:42, doiggl@velocitynet.com.au escribió:
Hello, How can this build problem be fixed[1]
ok E: libtrash no-return-in-nonvoid-function open-funs.c:751 let's take a look at the source code.. the error is in file open-funs.c *around* line 751 function has definition static FdOrFp do_fopen_or_freopen_or_open(int function, const char *path, ...) at the end there is a comment /* (No return statement because all cases in the above switch-statement contain one.) */ that's wrong, a non-void function MUST return something, otherwise the compiler can do anything, as it is undefined behaviour. add "return NULL" ;) -- To unsubscribe, e-mail: opensuse-packaging+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-packaging+owner@opensuse.org