comparison src/alac/plugin.c @ 1973:f86cb7fc1d4f

Add -pipe -Wall if gcc and fix a few warnings.
author Jonathan Schleifer <js@h3c.de>
date Wed, 03 Oct 2007 17:24:59 +0200
parents f35f9d6fcb6d
children 5fa26178eaef
comparison
equal deleted inserted replaced
1972:2bd85ddedf9e 1973:f86cb7fc1d4f
62 static int going = 0; 62 static int going = 0;
63 static int seek_to = -1; 63 static int seek_to = -1;
64 64
65 extern void set_endian(); 65 extern void set_endian();
66 66
67 /*
67 static gchar * 68 static gchar *
68 extname(const char *filename) 69 extname(const char *filename)
69 { 70 {
70 gchar *ext = strrchr(filename, '.'); 71 gchar *ext = strrchr(filename, '.');
71 72
72 if (ext != NULL) 73 if (ext != NULL)
73 ++ext; 74 ++ext;
74 75
75 return ext; 76 return ext;
76 } 77 }
78 */
77 79
78 static void alac_about(void) 80 static void alac_about(void)
79 { 81 {
80 static GtkWidget *aboutbox; 82 static GtkWidget *aboutbox;
81 83