summaryrefslogtreecommitdiff
path: root/src/minicontrol-monitor.c
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2016-03-28 08:59:58 +0900
committerHwankyu Jhun <h.jhun@samsung.com>2016-03-31 09:57:39 +0900
commit5584ff7c0b489998ec4a0dec5ec51a16fc2d2dfa (patch)
tree7fbeaea6b2618c50ea21c3a3f7de6c2c9177f7aa /src/minicontrol-monitor.c
parent5ca36e515649f6f9a30ea104d5ccd7e96302dcaf (diff)
downloadminicontrol-5584ff7c0b489998ec4a0dec5ec51a16fc2d2dfa.tar.gz
minicontrol-5584ff7c0b489998ec4a0dec5ec51a16fc2d2dfa.tar.bz2
minicontrol-5584ff7c0b489998ec4a0dec5ec51a16fc2d2dfa.zip
Change-Id: I07d20c3ffc1f03c151fa1176fc664f11a6c80fdc Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
Diffstat (limited to 'src/minicontrol-monitor.c')
-rwxr-xr-xsrc/minicontrol-monitor.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/minicontrol-monitor.c b/src/minicontrol-monitor.c
index ae336ff..40041a5 100755
--- a/src/minicontrol-monitor.c
+++ b/src/minicontrol-monitor.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013-2015 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2013 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
@@ -83,9 +83,9 @@ static void _sig_to_viewer_handler_cb(minicontrol_event_e event, const char *min
}
if (action == MINICONTROL_ACTION_START || action == MINICONTROL_ACTION_RESIZE || action == MINICONTROL_ACTION_REQUEST) {
- bundle_get_byte(event_arg, "width", (void*)&width, &n_size);
- bundle_get_byte(event_arg, "height", (void*)&height, &n_size);
- bundle_get_byte(event_arg, "priority", (void*)&priority_from_signal, &n_size);
+ bundle_get_byte(event_arg, "width", (void *)&width, &n_size);
+ bundle_get_byte(event_arg, "height", (void *)&height, &n_size);
+ bundle_get_byte(event_arg, "priority", (void *)&priority_from_signal, &n_size);
priority = _int_to_priority(priority_from_signal);
} else {
priority = MINICONTROL_PRIORITY_LOW;
@@ -132,3 +132,4 @@ EXPORT_API minicontrol_error_e minicontrol_monitor_stop(void)
return MINICONTROL_ERROR_NONE;
}
+