aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2008-12-21 08:29:51 -0300
committercorvid <corvid@lavabit.com>2008-12-21 08:29:51 -0300
commit197c6074b6b7ca6932e98872f412c3aa1bf550e4 (patch)
treee6b503ee87167599cc44080d51169f86506a0bdc
parent2b760db7663afe51c9788f0095014fbf9f16f544 (diff)
Added const to CLI_options variable.
-rw-r--r--src/dillo.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dillo.cc b/src/dillo.cc
index ad6490d8..86b1ffa1 100644
--- a/src/dillo.cc
+++ b/src/dillo.cc
@@ -69,7 +69,7 @@ typedef struct {
const char *help;
} CLI_options;
-const CLI_options Options[] = {
+static const CLI_options Options[] = {
{"-f", "--fullwindow", 0, DILLO_CLI_FULLWINDOW,
" -f, --fullwindow Start in full window mode: hide address bar,\n"
" navigation buttons, menu, and status bar."},