Fix build error due to toolchain upgrade (gcc6 -> gcc9) 92/220992/2
authorJihoon Kim <jihoon48.kim@samsung.com>
Thu, 26 Dec 2019 07:00:50 +0000 (16:00 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Thu, 26 Dec 2019 07:03:24 +0000 (16:03 +0900)
output may be truncated before the last format character [-Werror=format-truncation=]

Change-Id: Ib8f764800f3e9eb95df828b42624af4620889a9f
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
im_setting_list/input_method_setting_list_ui.cpp

index 4c0af72..a4d60a4 100644 (file)
@@ -47,8 +47,8 @@
 
 typedef struct list_item_text_s
 {
-    char main_text[255];
-    char sub_text[255];
+    char main_text[256];
+    char sub_text[512];
 } list_item_text;
 
 typedef struct popup_cb_data_s