All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] zlib: fix compilation failures with Sun C Compilaer
@ 2013-04-22 16:18 Stefano Lattarini
  2013-04-22 16:48 ` Junio C Hamano
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Stefano Lattarini @ 2013-04-22 16:18 UTC (permalink / raw)
  To: git; +Cc: gitster

Do this by removing a couple of useless return statements.  Without this
change, compilation with Sun C Compiler 5.9 (SunOS_i386 Patch 124868-15
2010/08/11) fails with the following message:

  "zlib.c", line 192: void function cannot return value
  "zlib.c", line 201: void function cannot return value
  cc: acomp failed for zlib.c

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
---
 zlib.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/zlib.c b/zlib.c
index bbaa081..61e6df0 100644
--- a/zlib.c
+++ b/zlib.c
@@ -189,7 +189,7 @@ void git_deflate_init_gzip(git_zstream *strm, int level)
 	 * Use default 15 bits, +16 is to generate gzip header/trailer
 	 * instead of the zlib wrapper.
 	 */
-	return do_git_deflate_init(strm, level, 15 + 16);
+	do_git_deflate_init(strm, level, 15 + 16);
 }
 
 void git_deflate_init_raw(git_zstream *strm, int level)
@@ -198,7 +198,7 @@ void git_deflate_init_raw(git_zstream *strm, int level)
 	 * Use default 15 bits, negate the value to get raw compressed
 	 * data without zlib header and trailer.
 	 */
-	return do_git_deflate_init(strm, level, -15);
+	do_git_deflate_init(strm, level, -15);
 }
 
 int git_deflate_abort(git_zstream *strm)
-- 
1.8.1.rc3.897.gb3600c3

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] zlib: fix compilation failures with Sun C Compilaer
  2013-04-22 16:18 [PATCH] zlib: fix compilation failures with Sun C Compilaer Stefano Lattarini
@ 2013-04-22 16:48 ` Junio C Hamano
  2013-04-22 17:50   ` Stefano Lattarini
  2013-04-22 16:54 ` René Scharfe
  2013-04-22 21:41 ` Eric Sunshine
  2 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2013-04-22 16:48 UTC (permalink / raw)
  To: Stefano Lattarini; +Cc: git

Stefano Lattarini <stefano.lattarini@gmail.com> writes:

> Do this by removing a couple of useless return statements.  Without this
> change, compilation with Sun C Compiler 5.9 (SunOS_i386 Patch 124868-15
> 2010/08/11) fails with the following message:
>
>   "zlib.c", line 192: void function cannot return value
>   "zlib.c", line 201: void function cannot return value
>   cc: acomp failed for zlib.c

Thanks for catching a recent regression in the mainline before any
tagged release is made out of it.  Very much appreciated.

>
> Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
> ---
>  zlib.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/zlib.c b/zlib.c
> index bbaa081..61e6df0 100644
> --- a/zlib.c
> +++ b/zlib.c
> @@ -189,7 +189,7 @@ void git_deflate_init_gzip(git_zstream *strm, int level)
>  	 * Use default 15 bits, +16 is to generate gzip header/trailer
>  	 * instead of the zlib wrapper.
>  	 */
> -	return do_git_deflate_init(strm, level, 15 + 16);
> +	do_git_deflate_init(strm, level, 15 + 16);
>  }
>  
>  void git_deflate_init_raw(git_zstream *strm, int level)
> @@ -198,7 +198,7 @@ void git_deflate_init_raw(git_zstream *strm, int level)
>  	 * Use default 15 bits, negate the value to get raw compressed
>  	 * data without zlib header and trailer.
>  	 */
> -	return do_git_deflate_init(strm, level, -15);
> +	do_git_deflate_init(strm, level, -15);
>  }
>  
>  int git_deflate_abort(git_zstream *strm)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] zlib: fix compilation failures with Sun C Compilaer
  2013-04-22 16:18 [PATCH] zlib: fix compilation failures with Sun C Compilaer Stefano Lattarini
  2013-04-22 16:48 ` Junio C Hamano
@ 2013-04-22 16:54 ` René Scharfe
  2013-04-22 21:41 ` Eric Sunshine
  2 siblings, 0 replies; 6+ messages in thread
From: René Scharfe @ 2013-04-22 16:54 UTC (permalink / raw)
  To: Stefano Lattarini; +Cc: git, gitster

Am 22.04.2013 18:18, schrieb Stefano Lattarini:
> Do this by removing a couple of useless return statements.  Without this
> change, compilation with Sun C Compiler 5.9 (SunOS_i386 Patch 124868-15
> 2010/08/11) fails with the following message:
>
>    "zlib.c", line 192: void function cannot return value
>    "zlib.c", line 201: void function cannot return value
>    cc: acomp failed for zlib.c

Hmm, what was I thinking when I introduced these returns in c3c2e1a0? 
:-/ Thanks for catching!

René

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] zlib: fix compilation failures with Sun C Compilaer
  2013-04-22 16:48 ` Junio C Hamano
@ 2013-04-22 17:50   ` Stefano Lattarini
  0 siblings, 0 replies; 6+ messages in thread
From: Stefano Lattarini @ 2013-04-22 17:50 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

On 04/22/2013 06:48 PM, Junio C Hamano wrote:
> Stefano Lattarini <stefano.lattarini@gmail.com> writes:
> 
>> Do this by removing a couple of useless return statements.  Without this
>> change, compilation with Sun C Compiler 5.9 (SunOS_i386 Patch 124868-15
>> 2010/08/11) fails with the following message:
>>
>>   "zlib.c", line 192: void function cannot return value
>>   "zlib.c", line 201: void function cannot return value
>>   cc: acomp failed for zlib.c
> 
> Thanks for catching a recent regression in the mainline before any
> tagged release is made out of it.  Very much appreciated.
>
Actually, I tried to build the bleeding-edge git on Solaris to use it
myself, rather than to test it ;-)  So, thanks to you and all the git
contributors for continuously improving the package, thus making it
worth to try to build and use the bleeding-edge version.

Best regards,
  Stefano

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] zlib: fix compilation failures with Sun C Compilaer
  2013-04-22 16:18 [PATCH] zlib: fix compilation failures with Sun C Compilaer Stefano Lattarini
  2013-04-22 16:48 ` Junio C Hamano
  2013-04-22 16:54 ` René Scharfe
@ 2013-04-22 21:41 ` Eric Sunshine
  2013-04-22 22:06   ` Stefano Lattarini
  2 siblings, 1 reply; 6+ messages in thread
From: Eric Sunshine @ 2013-04-22 21:41 UTC (permalink / raw)
  To: Stefano Lattarini; +Cc: Git List, Junio C Hamano

On Mon, Apr 22, 2013 at 12:18 PM, Stefano Lattarini
<stefano.lattarini@gmail.com> wrote:
> zlib: fix compilation failures with Sun C Compilaer

s/Compilaer/compiler/

> Do this by removing a couple of useless return statements.  Without this
> change, compilation with Sun C Compiler 5.9 (SunOS_i386 Patch 124868-15
> 2010/08/11) fails with the following message:
>
>   "zlib.c", line 192: void function cannot return value
>   "zlib.c", line 201: void function cannot return value
>   cc: acomp failed for zlib.c
>
> Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] zlib: fix compilation failures with Sun C Compilaer
  2013-04-22 21:41 ` Eric Sunshine
@ 2013-04-22 22:06   ` Stefano Lattarini
  0 siblings, 0 replies; 6+ messages in thread
From: Stefano Lattarini @ 2013-04-22 22:06 UTC (permalink / raw)
  To: Eric Sunshine; +Cc: Git List, Junio C Hamano

On 04/22/2013 11:41 PM, Eric Sunshine wrote:
> On Mon, Apr 22, 2013 at 12:18 PM, Stefano Lattarini
> <stefano.lattarini@gmail.com> wrote:
>> zlib: fix compilation failures with Sun C Compilaer
> 
> s/Compilaer/compiler/
> 
Oops, well spotted.  Junio, can you fix this locally?

Thanks, and sorry for the stupid typo,
  Stefano

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-04-22 22:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-22 16:18 [PATCH] zlib: fix compilation failures with Sun C Compilaer Stefano Lattarini
2013-04-22 16:48 ` Junio C Hamano
2013-04-22 17:50   ` Stefano Lattarini
2013-04-22 16:54 ` René Scharfe
2013-04-22 21:41 ` Eric Sunshine
2013-04-22 22:06   ` Stefano Lattarini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.