diff options
author | corvid <corvid@lavabit.com> | 2008-12-21 08:29:51 -0300 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2008-12-21 08:29:51 -0300 |
commit | 197c6074b6b7ca6932e98872f412c3aa1bf550e4 (patch) | |
tree | e6b503ee87167599cc44080d51169f86506a0bdc /src | |
parent | 2b760db7663afe51c9788f0095014fbf9f16f544 (diff) |
Added const to CLI_options variable.
Diffstat (limited to 'src')
-rw-r--r-- | src/dillo.cc | 2 |
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."}, |