diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-05-24 02:06:01 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-05-24 02:06:01 +0000 |
commit | 9cccb951f0afece3eb83d45275d903852298839c (patch) | |
tree | 2b5238df1183882c9672ce73956c6f5fceae7d27 /image | |
parent | a396513ad85bfc11ad9aa1f1644b4fb7c68a531a (diff) | |
download | wireshark-9cccb951f0afece3eb83d45275d903852298839c.tar.gz wireshark-9cccb951f0afece3eb83d45275d903852298839c.tar.bz2 wireshark-9cccb951f0afece3eb83d45275d903852298839c.zip |
Make the XPM text "const", to get rid of some compiler warnings.
svn path=/trunk/; revision=10981
Diffstat (limited to 'image')
-rw-r--r-- | image/clist_ascend.xpm | 2 | ||||
-rw-r--r-- | image/clist_descend.xpm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/image/clist_ascend.xpm b/image/clist_ascend.xpm index bd917c8c22..aa4f6f329b 100644 --- a/image/clist_ascend.xpm +++ b/image/clist_ascend.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * clist_ascend_xpm[] = { +static const char * clist_ascend_xpm[] = { "4 4 2 1", " c None", ". c #000000", diff --git a/image/clist_descend.xpm b/image/clist_descend.xpm index 150116c5f8..6d236c949d 100644 --- a/image/clist_descend.xpm +++ b/image/clist_descend.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * clist_descend_xpm[] = { +static const char * clist_descend_xpm[] = { "4 4 2 1", " c None", ". c #000000", |