Francois Gouget : msi: Make find_table() static.
Module: wine Branch: master Commit: 2649761175fb4f787d17ffdf18c8452f91a525b9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2649761175fb4f787d17ffdf18... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Sep 2 10:51:16 2011 +0200 msi: Make find_table() static. --- dlls/msi/where.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/msi/where.c b/dlls/msi/where.c index cc80a71..5304900 100644 --- a/dlls/msi/where.c +++ b/dlls/msi/where.c @@ -149,7 +149,7 @@ static UINT add_row(MSIWHEREVIEW *wv, UINT vals[]) return ERROR_SUCCESS; } -JOINTABLE *find_table(MSIWHEREVIEW *wv, UINT col, UINT *table_col) +static JOINTABLE *find_table(MSIWHEREVIEW *wv, UINT col, UINT *table_col) { JOINTABLE *table = wv->tables;
participants (1)
-
Alexandre Julliard