From 8ed2de25f3fb5288bf4011dee2943b442caca46f Mon Sep 17 00:00:00 2001 From: Seungbae Shin Date: Thu, 14 Sep 2017 17:10:43 +0900 Subject: [PATCH] fixup! Modify for Coding Rule Change-Id: If2a51ff14cf986bf41952ee97dda59be67b19c02 --- mm_session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm_session.c b/mm_session.c index 4890afb..b7e8a49 100644 --- a/mm_session.c +++ b/mm_session.c @@ -242,7 +242,7 @@ int _mm_session_util_write_type(int app_pid, int sessiontype) ////// WRITE SESSION TYPE ///////// snprintf(filename, sizeof(filename)-1, "/tmp/mm_session_%d", mypid); - fd = open(filename, O_WRONLY | O_CREAT, 064); + fd = open(filename, O_WRONLY | O_CREAT, 0644); if (fd < 0) { debug_error("open() failed with %d", errno); return MM_ERROR_FILE_WRITE; -- 2.7.4