summaryrefslogtreecommitdiff
path: root/content/backing_store.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-23 01:37:24 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-23 01:37:24 +0000
commit246a1fec0523346e9fdfb9b7d937cfbd947cd663 (patch)
tree547ba953a6cbd246db16ad24308ddc9ff5aa8f4a /content/backing_store.h
parent63c35da66ed040df8c675ae9d86f4834e26980a3 (diff)
downloadnetsurf-246a1fec0523346e9fdfb9b7d937cfbd947cd663.tar.gz
netsurf-246a1fec0523346e9fdfb9b7d937cfbd947cd663.tar.bz2
remove constness from backing stores store method
Diffstat (limited to 'content/backing_store.h')
-rw-r--r--content/backing_store.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/backing_store.h b/content/backing_store.h
index 2a90c8762..077f050ed 100644
--- a/content/backing_store.h
+++ b/content/backing_store.h
@@ -74,7 +74,7 @@ struct gui_llcache_table {
* @return NSERROR_OK on success or error code on faliure.
*/
nserror (*store)(struct nsurl *url, enum backing_store_flags flags,
- const uint8_t *data, const size_t datalen);
+ uint8_t *data, const size_t datalen);
/**
* Retrive an object from the backing store.