diff options
author | jcid <devnull@localhost> | 2007-10-14 04:21:53 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-10-14 04:21:53 +0200 |
commit | 9ab3912ac73bfeca7da77aa9463d758ee01659d2 (patch) | |
tree | cc5cd0af0f7839eb0f33ac6b5a4cc62546795ab3 /src/history.c | |
parent | a7aa9b432ee5cd92b6127608d1355b3861aedbf7 (diff) |
Added some "const" qualifiers.
Diffstat (limited to 'src/history.c')
-rw-r--r-- | src/history.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/history.c b/src/history.c index 7819e58e..49dbb966 100644 --- a/src/history.c +++ b/src/history.c @@ -92,7 +92,7 @@ const char *a_History_get_title(int idx, int force) * Return the title camp (by url) * ('force' returns URL_STR when there's no title) */ -const char *a_History_get_title_by_url(DilloUrl *url, int force) +const char *a_History_get_title_by_url(const DilloUrl *url, int force) { int i; |