Skip to content
Snippets Groups Projects
Commit 7f7f7904 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Fixed a warning.

Rev: src/post_modules/Shuffler/Shuffler.cmod:1.50
parent 7eb3eaf7
Branches
Tags
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
|| This file is part of Pike. For copyright information see COPYRIGHT. || This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information. || for more information.
|| $Id: Shuffler.cmod,v 1.49 2008/08/07 12:47:22 srb Exp $ || $Id: Shuffler.cmod,v 1.50 2008/08/12 15:19:31 mast Exp $
*/ */
#include "global.h" #include "global.h"
...@@ -170,7 +170,7 @@ PIKECLASS Shuffle ...@@ -170,7 +170,7 @@ PIKECLASS Shuffle
SHUFFLE_DEBUG2("set_throttler(%p)\n", THIS, t ); SHUFFLE_DEBUG2("set_throttler(%p)\n", THIS, t );
if( THIS->throttler ) if( THIS->throttler )
free_object( THIS->throttler ); free_object( THIS->throttler );
if( THIS->throttler = t ) { if( (THIS->throttler = t) ) {
debug_malloc_touch(THIS->throttler); debug_malloc_touch(THIS->throttler);
Pike_sp--; Pike_sp--;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment