[PATCH] gphoto2.ds: add missing brackets (resend)

Lei Zhang thestig at google.com
Thu Aug 23 15:26:25 CDT 2007


Hi,

I missed a pair of brackets in commitish e2605fb0, and in the last
email I forgot the attachment.
-------------- next part --------------
From 572fe4621b35c8e198d6fb049207f3222e99c21b Mon Sep 17 00:00:00 2001
From: Lei Zhang <thestig at google.com>
Date: Thu, 23 Aug 2007 13:21:31 -0700
Subject: [PATCH] gphoto2.ds: 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;
 }
-- 
1.4.1


More information about the wine-patches mailing list