From e4ebd5b059b9848c73880df85c9f862c594ce700 Mon Sep 17 00:00:00 2001 From: Paul Wessel Date: Thu, 28 Jun 2018 02:05:50 +0000 Subject: [PATCH] Fix missing size-declaration for track_path --- src/x2sys/x2sys_put.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x2sys/x2sys_put.c b/src/x2sys/x2sys_put.c index f30338916cf..7a8a35f61a4 100644 --- a/src/x2sys/x2sys_put.c +++ b/src/x2sys/x2sys_put.c @@ -195,7 +195,7 @@ int GMT_x2sys_put (void *V_API, int mode, void *args) { char track[GMT_LEN64] = {""}, line[GMT_BUFSIZ] = {""}; char track_file[GMT_BUFSIZ] = {""}, index_file[GMT_BUFSIZ] = {""}, old_track_file[GMT_BUFSIZ] = {""}, old_index_file[GMT_BUFSIZ] = {""}; - char track_path[] = {""}, index_path[GMT_BUFSIZ] = {""}, old_track_path[GMT_BUFSIZ] = {""}, old_index_path[GMT_BUFSIZ] = {""}; + char track_path[GMT_BUFSIZ] = {""}, index_path[GMT_BUFSIZ] = {""}, old_track_path[GMT_BUFSIZ] = {""}, old_index_path[GMT_BUFSIZ] = {""}; int error = 0, k; bool found_it, skip;