twain_32: Constify a variable

Andrew Talbot andrew.talbot at talbotville.com
Wed Nov 7 15:11:07 CST 2007


Changelog:
    twain_32: Constify a variable.

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;
 



More information about the wine-patches mailing list