summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/notification.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notification.c b/src/notification.c
index 20bcb11..ed70e47 100644
--- a/src/notification.c
+++ b/src/notification.c
@@ -792,7 +792,7 @@ EXPORT_API int notification_get_text(notification_h noti,
translated_str = NULL;
}
- strncpy(buf_str, sizeof(buf_str), translated_str);
+ strncpy(buf_str, translated_str, sizeof(buf_str));
int src_len = strlen(result_str);
int max_len = NOTI_TEXT_RESULT_LEN - src_len - 1;