Constify a return value, to squelch a compiler warning.

svn path=/trunk/; revision=37680
This commit is contained in:
Guy Harris 2011-06-16 07:27:48 +00:00
parent 3a62afcfed
commit 38bbf40f64
2 changed files with 3 additions and 3 deletions

View File

@ -71,9 +71,9 @@
#include "geoip_db.h"
#endif
gchar*
const gchar*
epan_get_version(void) {
return VERSION;
return VERSION;
}
void

View File

@ -84,7 +84,7 @@ epan_new(void);
void
epan_free(epan_t*);
extern gchar*
extern const gchar*
epan_get_version(void);
/** initialize an existing single packet dissection */