IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 6, 2007, 3:31:41 PM (19 years ago)
Author:
jhoblitt
Message:

cast all 'const' variables to (void *) when calling psFree()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/config/pmConfigRecipes.c

    r11097 r11676  
    265265        }
    266266        psTrace ("psModules.config", 3, "read recipe %s from %s", recipeName, recipeSource);
    267         psFree(recipeName);
    268         psFree(recipeSource);
     267        psFree((void *)recipeName);
     268        psFree((void *)recipeSource);
    269269    } // Iterating through the command-line arguments
    270270
Note: See TracChangeset for help on using the changeset viewer.