Fix issue detected by static analysis tool 46/280946/1
authorInHong Han <inhong1.han@samsung.com>
Wed, 7 Sep 2022 04:48:36 +0000 (13:48 +0900)
committerInHong Han <inhong1.han@samsung.com>
Wed, 7 Sep 2022 04:50:38 +0000 (13:50 +0900)
Do not assign unsigned long type to unsigned int variable 'client_window'

Change-Id: I8bf488aab9de3e48dd22e251db5fab1943705b8d

inputmethod/include/inputmethod_private.h

index ec3ae18..1182df6 100644 (file)
@@ -30,7 +30,7 @@ struct _ime_context {
        Ecore_IMF_Input_Hints input_hint;       /**< Edit field hint */
        Ecore_IMF_BiDi_Direction bidi_direction;/**< Bidirectional mode */
        Ecore_IMF_Input_Panel_Lang language;    /**< Preferred input language */
-       unsigned int client_window;             /**< Client application window object */
+       unsigned long client_window;             /**< Client application window object */
        Eina_Bool caps_mode;                    /**< Caps mode */
 };