# HG changeset patch # User michael # Date 1201972420 0 # Node ID 13e4f6ebb206c843f205709e9aa73515e6afbb3a # Parent 6e7a1e3b7dd487a81ea6480f4ff046373ccc6e63 Make src const. diff -r 6e7a1e3b7dd4 -r 13e4f6ebb206 postprocess_internal.h --- a/postprocess_internal.h Sat Feb 02 17:12:17 2008 +0000 +++ b/postprocess_internal.h Sat Feb 02 17:13:40 2008 +0000 @@ -166,7 +166,7 @@ } PPContext; -static inline void linecpy(void *dest, void *src, int lines, int stride) +static inline void linecpy(void *dest, const void *src, int lines, int stride) { if (stride > 0) { memcpy(dest, src, lines*stride);