aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/sip_stat.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-06-24 01:32:42 +0000
committerGuy Harris <guy@alum.mit.edu>2005-06-24 01:32:42 +0000
commit76258fe8e3484911401b2c70b48516b0eabfbbe0 (patch)
tree20224aded670da90d23f114f2289164b2314c07e /gtk/sip_stat.c
parent6f9d56ddd097bbae7fea6c1e242992aef88ab58b (diff)
Constify a bunch of structure members and function arguments, to squelch
compiler warnings. Clean up indentation. svn path=/trunk/; revision=14739
Diffstat (limited to 'gtk/sip_stat.c')
-rw-r--r--gtk/sip_stat.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/sip_stat.c b/gtk/sip_stat.c
index 1e1edffb6c..3f5dbc77d6 100644
--- a/gtk/sip_stat.c
+++ b/gtk/sip_stat.c
@@ -73,13 +73,13 @@ typedef struct _sip_stats_t {
* for example it can be { 3, 404, "Not Found" ,...}
* which means we captured 3 reply sip/1.1 404 Not Found */
typedef struct _sip_response_code_t {
- guint32 packets; /* 3 */
- guint response_code; /* 404 */
- gchar *name; /* "Not Found" */
- GtkWidget *widget; /* Label where we display it */
- GtkWidget *table; /* Table in which we put it,
- e.g. client_error_table */
- sipstat_t *sp; /* Pointer back to main struct */
+ guint32 packets; /* 3 */
+ guint response_code; /* 404 */
+ const gchar *name; /* "Not Found" */
+ GtkWidget *widget; /* Label where we display it */
+ GtkWidget *table; /* Table in which we put it,
+ e.g. client_error_table */
+ sipstat_t *sp; /* Pointer back to main struct */
} sip_response_code_t;
/* Used to keep track of the stats for a specific request string */