Skip to content

Commit

Permalink
Fix missing size-declaration for track_path
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulWessel committed Jun 28, 2018
1 parent a9b73f5 commit e4ebd5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/x2sys/x2sys_put.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e4ebd5b

Please sign in to comment.