summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSho Amano <samano@xevo.com>2017-08-03 17:37:06 +0900
committerSho Amano <samano@xevo.com>2017-08-03 17:37:06 +0900
commitdffbeda7e4755677e168c0acf7a83f2dde7fdb26 (patch)
treef7b256f199751957ee93b77fc2459037f924f45f
parent3836f3c70d2b1b87008f24aa5f1907accfdf7436 (diff)
downloadsdl_core-dffbeda7e4755677e168c0acf7a83f2dde7fdb26.tar.gz
fix coding style using check_style.sh
-rw-r--r--src/components/media_manager/src/audio/from_mic_to_file_recorder_thread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/media_manager/src/audio/from_mic_to_file_recorder_thread.cc b/src/components/media_manager/src/audio/from_mic_to_file_recorder_thread.cc
index 27550ac144..cfb1784788 100644
--- a/src/components/media_manager/src/audio/from_mic_to_file_recorder_thread.cc
+++ b/src/components/media_manager/src/audio/from_mic_to_file_recorder_thread.cc
@@ -150,7 +150,7 @@ void FromMicToFileRecorderThread::threadMain() {
{NULL}};
// g_option_context_parse() modifies params, so keep argc_ and argv_
int32_t argc = argc_;
- gchar** argv = new gchar*[argc];
+ gchar** argv = new gchar* [argc];
for (int32_t i = 0; i < argc; i++) {
argv[i] = argv_[i];
}