Andrew Talbot : cabinet: Constify a variable.
Module: wine Branch: master Commit: 9ca199a87d6017c333407604cf113f4f69947b94 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9ca199a87d6017c333407604cf... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Mon May 25 22:41:49 2009 +0100 cabinet: Constify a variable. --- dlls/cabinet/fdi.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/cabinet/fdi.c b/dlls/cabinet/fdi.c index c7749eb..8132818 100644 --- a/dlls/cabinet/fdi.c +++ b/dlls/cabinet/fdi.c @@ -2260,7 +2260,7 @@ static int fdi_decomp(const struct fdi_file *fi, int savemode, fdi_decomp_state return DECR_OK; } -static void free_decompression_temps(HFDI hfdi, struct fdi_folder *fol, +static void free_decompression_temps(HFDI hfdi, const struct fdi_folder *fol, fdi_decomp_state *decomp_state) { switch (fol->comp_type & cffoldCOMPTYPE_MASK) {
participants (1)
-
Alexandre Julliard