summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.cc
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-12 23:40:53 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-13 00:35:02 -0700
commitb1f1fd413c374aa70fe22a71a5d9e48f9c8f489a (patch)
treef842747c557ec1886795f612746fba2602dbf891 /crawl-ref/source/hiscores.cc
parentb93e6c68bcb4455829fa89a5b33c234e7a452c4c (diff)
downloadcrawl-ref-b1f1fd413c374aa70fe22a71a5d9e48f9c8f489a.tar.gz
crawl-ref-b1f1fd413c374aa70fe22a71a5d9e48f9c8f489a.zip
hiscores.cc: fix meaningless type qualifier on return type
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/hiscores.cc')
-rw-r--r--crawl-ref/source/hiscores.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/hiscores.cc b/crawl-ref/source/hiscores.cc
index f094715974..6df297a618 100644
--- a/crawl-ref/source/hiscores.cc
+++ b/crawl-ref/source/hiscores.cc
@@ -300,7 +300,7 @@ void hiscores_print_list( int display_count, int format )
}
// Trying to supply an appropriate verb for the attack type. -- bwr
-static const char *const _range_type_verb( const char *const aux )
+static const char *_range_type_verb( const char *const aux )
{
if (strncmp( aux, "Shot ", 5 ) == 0) // launched
return ("shot");