[monkey-bubble: 93/753] Remove redundant AC_SUBST calls for CFLAGS, CPPFLAGS, LDFLAGS



commit dc4bc9de74389cd438af8de713129eb8f14f87be
Author: Jeff Garzik <jgarzik src gnome org>
Date:   Mon Jan 18 22:33:11 1999 +0000

    Remove redundant AC_SUBST calls for CFLAGS, CPPFLAGS, LDFLAGS
    
            * configure.in:
            Remove redundant AC_SUBST calls for CFLAGS, CPPFLAGS, LDFLAGS
    
            * gnome-exec.c:
            Include string.h for string prototypes
    
            * gnome-help.c:
            Include gnome-url.h for gnome_url_show() proto
    
            * gnome-metadata.c:
            Eliminated const-ness warnings.
    
            * gnome-mime.[ch]:
            Made several functions const-correct.
    
            * gnome-score.c:
            s/strdup/g_strdup/ to eliminate ANSI warnings.

 libgnome/gnome-score.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/libgnome/gnome-score.c b/libgnome/gnome-score.c
index 1c1b42b..84d86a7 100644
--- a/libgnome/gnome-score.c
+++ b/libgnome/gnome-score.c
@@ -126,7 +126,7 @@ log_score (const gchar * progname, const gchar * level, gchar * username,
    
    anitem = g_new(struct ascore_t, 1);
    anitem->score = score;
-   anitem->username = strdup(username);
+   anitem->username = g_strdup (username);
    anitem->scoretime = time (NULL);
 
    for (pos = 0, anode = scores;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]