diff --git a/ChangeLog b/ChangeLog index fa83e3b..9bfb1bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-11-02 02:27 Alexander Malmberg + + * Source/gsc/GSStreamContext.m (fpfloat, writeHex): Make static. + 2003-10-29 Yen-Ju Chen * Source/x11/XGServerWindow.m ([XGServer -_setupRootWindow]): Always diff --git a/Source/gsc/GSStreamContext.m b/Source/gsc/GSStreamContext.m index e0b00ff..0169cf9 100644 --- a/Source/gsc/GSStreamContext.m +++ b/Source/gsc/GSStreamContext.m @@ -46,7 +46,7 @@ @end /* Print a floating point number regardless of localization */ -void +static void fpfloat(FILE *stream, float f) { char buffer[80], *p; @@ -797,7 +797,7 @@ fpfloat(FILE *stream, float f) static char *hexdigits = "0123456789abcdef"; -void +static void writeHex(FILE *gstream, const unsigned char *data, int count) { int i;