diff src/stringref.c @ 7768:4e5c48ea9478

[gaim-migrate @ 8413] This is really const, and informing the compiler might improve inlining committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Fri, 05 Dec 2003 18:02:27 +0000
parents 1f4005fcd872
children 85abf91f2387
line wrap: on
line diff
--- a/src/stringref.c	Fri Dec 05 17:28:22 2003 +0000
+++ b/src/stringref.c	Fri Dec 05 18:02:27 2003 +0000
@@ -71,7 +71,7 @@
 		g_free(stringref);
 }
 
-const char *gaim_stringref_value(GaimStringref *stringref)
+const char *gaim_stringref_value(const GaimStringref *stringref)
 {
 	return (stringref == NULL ? NULL : stringref->value);
 }