Just apply tizen coding rule 84/51284/1 accepted/tizen/mobile/20151110.070940 accepted/tizen/tv/20151110.071004 accepted/tizen/wearable/20151110.071019 submit/tizen/20151110.052634 submit/tizen_common/20151229.142028 submit/tizen_common/20151229.144031 submit/tizen_common/20151229.154718
authorHaejeong, Kim <backto.kim@samsung.com>
Fri, 6 Nov 2015 07:12:48 +0000 (16:12 +0900)
committerHaejeong, Kim <backto.kim@samsung.com>
Fri, 6 Nov 2015 07:13:02 +0000 (16:13 +0900)
Change-Id: I469ef23ec07d003f65c96a98a285037084778e97

src/metadata_editor.cpp

index 6b72724..b152df9 100755 (executable)
@@ -957,7 +957,7 @@ extern "C" int metadata_editor_set_path(metadata_editor_h metadata, const char *
 
                        _metadata->filetype = METADATA_EDITOR_FORMAT_FLAC;
 
-                       if (_file->isOpen())    {                               // Check if the file was opened successfully
+                       if (_file->isOpen()) {                          // Check if the file was opened successfully
                                metadata_editor_info("The file is successfully opened. Address is %lX\n", _metadata->file);
                                _metadata->isOpen = true;
                        } else {                                                        // The file does not exist or you have no permission to process it
@@ -1363,7 +1363,7 @@ extern "C" int metadata_editor_set_metadata(metadata_editor_h metadata, metadata
                        // Bring the pointer to actual file type and make tags pointers
                        TagLib::Ogg::FLAC::File* _file = (TagLib::Ogg::FLAC::File*)_metadata->file;
                        TagLib::Ogg::XiphComment* xtag = _file->tag();
-                       if (!xtag)      {                                                       // Check if we have a valid tag for processing
+                       if (!xtag) {                                                    // Check if we have a valid tag for processing
                                metadata_editor_error("Error. Xiph Comment was not created. Can not proceed metadata updating\n");
                                return METADATA_EDITOR_ERROR_OPERATION_FAILED;
                        }