Processed: Re: Bug#526620: closed by Arthur Loiret aloi...@debian.org (reply to aloi...@debian.org) (Re: Bug#526620: False positive from -Wreturn-type)

2009-12-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: reopen 526620 Bug #526620 {Done: Arthur Loiret aloi...@debian.org} [gcc-4.4] False positive from -Wreturn-type quit Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator,

Bug#526620: closed by Arthur Loiret aloi...@debian.org (reply to aloi...@debian.org) (Re: Bug#526620: False positive from -Wreturn-type)

2009-12-24 Thread Richard Kettlewell
reopen 526620 quit Arthur Loiret wrote: 2009/12/24, Richard Kettlewell r...@terraraq.org.uk: This function's return type is required to be 'void *' because it is passed to pthread_create(); but it never actually returns. However, gcc-4.4 -Wall generates the following warning for it:

Processed: Re: Bug#526620 closed by Arthur Loiret aloi...@debian.org (reply to aloi...@debian.org) (Re: Bug#526620: False positive from -Wreturn-type)

2009-12-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: reopen 526620 Bug #526620 {Done: Arthur Loiret aloi...@debian.org} [gcc-4.4] False positive from -Wreturn-type quit Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator,

Bug#526620: closed by Arthur Loiret aloi...@debian.org (reply to aloi...@debian.org) (Re: Bug#526620: False positive from -Wreturn-type)

2009-12-23 Thread Richard Kettlewell
reopen 526620 quit This function's return type is required to be 'void *' because it is passed to pthread_create(); but it never actually returns. However, gcc-4.4 -Wall generates the following warning for it: playrtp.c: In function ‘queue_thread’: playrtp.c:327: error: no return statement in

Bug#526620: False positive from -Wreturn-type

2009-05-07 Thread Richard Kettlewell
Hello, Matthias Klose wrote: please could you forward this upstream, and add the upstream link to the report? I was slightly surprised to receive this reply as the bug reporting instructions explicitly said I shouldn't do that: Don't file bugs upstream If you file a bug in Debian,

Bug#526620: False positive from -Wreturn-type

2009-05-02 Thread Richard Kettlewell
Package: gcc-4.4 Version: 4.4.0-1 I have the following code: static void *queue_thread(void attribute((unused)) *arg) { struct packet *p; for(;;) { /* Get the next packet */ pthread_mutex_lock(receive_lock); while(!received_packets) { pthread_cond_wait(receive_cond,