summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2008-01-22 13:18:01 +0100
committerBenjamin Otte <otte@gnome.org>2008-01-22 13:18:01 +0100
commitb3a04c8b64e116650598c439ef236767c7a97a1e (patch)
tree6aa0a605a4b860679b8d6b1fef5a5feb488357a1
parent9754142bf3ee212d2158304f6572e8a266cf8b82 (diff)
clarify docs
-rw-r--r--player/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/player/main.c b/player/main.c
index 4b00bbe..e35d3f8 100644
--- a/player/main.c
+++ b/player/main.c
@@ -49,8 +49,8 @@ main (int argc, char *argv[])
GOptionEntry options[] = {
{ "size", 's', 0, G_OPTION_ARG_STRING, &size, "WIDTHxHEIGHT to specify a size or \'fullscreen\' to run fullscreen", "STRING" },
- { "cache-size", 'c', 0, G_OPTION_ARG_INT, &cache_size, "Amount of kB allowed as cache", "KB" },
- { "garbage-size", 'g', 0, G_OPTION_ARG_INT, &garbage_size, "Amount of kB before garbage collection runs", "KB" },
+ { "cache-size", 'c', 0, G_OPTION_ARG_INT, &cache_size, "Maxmimum amount of memory to be used as cache (default: 50MB)", "KB" },
+ { "garbage-size", 'g', 0, G_OPTION_ARG_INT, &garbage_size, "Amount of kB before garbage collection runs (default: 8MB)", "KB" },
{ NULL }
};