summaryrefslogtreecommitdiff
path: root/apps/plugins/chessbox/chessbox_pgn.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/chessbox/chessbox_pgn.c')
-rw-r--r--apps/plugins/chessbox/chessbox_pgn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/chessbox/chessbox_pgn.c b/apps/plugins/chessbox/chessbox_pgn.c
index a8be179fac..cd163a5e1c 100644
--- a/apps/plugins/chessbox/chessbox_pgn.c
+++ b/apps/plugins/chessbox/chessbox_pgn.c
@@ -543,7 +543,7 @@ char * get_game_text(int selected_item, void *data,
543 rb->snprintf(text_buffer, 50,"%s vs. %s (%s)", temp_node->white_player, 543 rb->snprintf(text_buffer, 50,"%s vs. %s (%s)", temp_node->white_player,
544 temp_node->black_player, temp_node->game_date); 544 temp_node->black_player, temp_node->game_date);
545 545
546 rb->strncpy(buffer, text_buffer, buffer_len); 546 rb->strlcpy(buffer, text_buffer, buffer_len);
547 return buffer; 547 return buffer;
548} 548}
549 549