# HG changeset patch # User benoit # Date 1199349578 0 # Node ID 1912d7e2858d5fe0f9e3c4a4d31b730b48c9ff80 # Parent 650554bacd1247cd4e94a7c649a856f4abf9c808 Make filterDelimiters and optionDelimiters two static constant array of characters, should move them to .rodata. Patch by Diego 'Flameeyes' Petten flameeyes gmail dot com diff -r 650554bacd12 -r 1912d7e2858d postprocess.c --- a/postprocess.c Sat Dec 01 22:21:04 2007 +0000 +++ b/postprocess.c Thu Jan 03 08:39:38 2008 +0000 @@ -745,8 +745,8 @@ { char temp[GET_MODE_BUFFER_SIZE]; char *p= temp; - const char *filterDelimiters= ",/"; - const char *optionDelimiters= ":"; + static const char filterDelimiters[] = ",/"; + static const char optionDelimiters[] = ":"; struct PPMode *ppMode; char *filterToken;