summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index f9c1650513..8f086eebea 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -210,7 +210,7 @@ static std::string _get_version_changes(void)
return (result);
}
-void print_version(void)
+static void _print_version(void)
{
formatted_scroller cmd_version;
@@ -1441,7 +1441,7 @@ static int _keyhelp_keyfilter(int ch)
case 'v':
case 'V':
{
- print_version();
+ _print_version();
return -1;
}
}