Module: wine Branch: master Commit: 76255835019ecd3b9c398d4c05464d0221ec4044 URL: http://source.winehq.org/git/wine.git/?a=commit;h=76255835019ecd3b9c398d4c05...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Wed Nov 7 21:11:07 2007 +0000
twain_32: Constify a variable.
---
dlls/twain_32/twain32_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/twain_32/twain32_main.c b/dlls/twain_32/twain32_main.c index b7db5d2..c04e9cf 100644 --- a/dlls/twain_32/twain32_main.c +++ b/dlls/twain_32/twain32_main.c @@ -33,7 +33,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(twain);
/* A helper function that looks up a destination identity in the active source list */ -static activeDS *TWAIN_LookupSource (pTW_IDENTITY pDest) +static activeDS *TWAIN_LookupSource (const TW_IDENTITY *pDest) { activeDS *pSource;