Changeset 2052

Show
Ignore:
Timestamp:
02/21/10 01:53:01 (5 months ago)
Author:
tpgww
Message:

eliminate cause of compiler warning

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plugins/e2p_find.c

    r2048 r2052  
    18081808  hold their respective default value 
    18091809@param widget when first called, this is a page-child for the dialog notebook 
    1810 @param clean pointer to boolean value with which to AND the result. Should hold 
    1811   TRUE when first called 
     1810@param clean pointer to boolean value to hold the result. Should hold TRUE when 
     1811  first called 
    18121812 
    18131813@return nothing, the result is communicated via @a clean 
     
    18401840                state = (gtk_spin_button_get_value (GTK_SPIN_BUTTON (widget)) == *value); 
    18411841        } 
    1842  
    1843         *clean = *clean && state; 
     1842        else 
     1843                state = TRUE; 
     1844 
     1845        if (!state) 
     1846                *clean = FALSE; 
    18441847} 
    18451848