Module: wine Branch: master Commit: 4945a255e40d90b755cde1f35caea00f9d30009a URL: http://source.winehq.org/git/wine.git/?a=commit;h=4945a255e40d90b755cde1f35c...
Author: Lei Zhang thestig@google.com Date: Thu Aug 23 13:21:31 2007 -0700
gphoto2: Add missing brackets.
---
dlls/gphoto2.ds/ui.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/gphoto2.ds/ui.c b/dlls/gphoto2.ds/ui.c index 7d43744..dd802fd 100644 --- a/dlls/gphoto2.ds/ui.c +++ b/dlls/gphoto2.ds/ui.c @@ -80,8 +80,10 @@ static int GetAllImages() LIST_FOR_EACH_ENTRY( file, &activeDS.files, struct gphoto2_file, entry) { if (strstr(file->filename,".JPG") || strstr(file->filename,".jpg")) + { file->download = TRUE; has_images = 1; + } } return has_images; }