Change xkbcommon file path to include/ subdirectory
[platform/upstream/libxkbcommon.git] / src / compose / table.c
index 04fa8cb..fc81963 100644 (file)
@@ -207,9 +207,14 @@ xkb_compose_table_new_from_locale(struct xkb_context *ctx,
     }
     free(path);
 
-    log_err(ctx, XKB_LOG_MESSAGE_NO_ID,
-            "couldn't find a Compose file for locale \"%s\" (mapped to \"%s\")\n",
-            locale, table->locale);
+// TIZEN_ONLY(20210525)
+// : fix not to display error log about the absense of compose file
+    if (!strncmp("en_US.UTF-8", locale, 11)) {
+        log_err(ctx, "couldn't find a Compose file for locale \"%s\" (mapped to \"%s\")\n",
+                locale, table->locale);
+    }
+// END
+
     xkb_compose_table_unref(table);
     return NULL;