From 4945a255e40d90b755cde1f35caea00f9d30009a Mon Sep 17 00:00:00 2001
From: Lei Zhang <thestig@google.com>
Date: Thu, 23 Aug 2007 13:21:31 -0700
Subject: [PATCH] gphoto2: Add missing brackets.

---
 dlls/gphoto2.ds/ui.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dlls/gphoto2.ds/ui.c b/dlls/gphoto2.ds/ui.c
index 7d43744765d..dd802fd8dee 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;
 }
-- 
GitLab