[MediaVision] Fix build break
authorSangchul Lee <sc11.lee@samsung.com>
Mon, 7 Nov 2016 11:19:00 +0000 (20:19 +0900)
committerSangchul Lee <sc11.lee@samsung.com>
Mon, 7 Nov 2016 11:19:35 +0000 (20:19 +0900)
[Version] 1.0.10
[Profile] Common
[Issue Type] build break

Change-Id: I14ca7f5914122bdf92e7889e6145a49c47799aff
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
packaging/csapi-multimedia.spec
src/Tizen.Multimedia/MediaVision/Image.cs

index c5c18b9..6c5355c 100644 (file)
@@ -8,7 +8,7 @@
 
 Name:       csapi-multimedia
 Summary:    Tizen Multimedia API for C#
-Version:    1.0.9
+Version:    1.0.10
 Release:    0
 Group:      Development/Libraries
 License:    Apache-2.0
index bb9135b..8355906 100755 (executable)
@@ -44,7 +44,7 @@ namespace Tizen.Multimedia
         /// <param name="fileName">Name of path/file to load the image object</param>
         public Image(string fileName)
         {
-            ret = Interop.MediaVision.Image.Load(fileName, out _imageObjectHandle);
+            int ret = Interop.MediaVision.Image.Load(fileName, out _imageObjectHandle);
             MediaVisionErrorFactory.CheckAndThrowException(ret, "Failed to load image object from file");
         }