Skip to content

Commit

Permalink
Expand memory storage for large longoptions directive string arrays. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rbdavis committed Feb 8, 2024
1 parent 666c8d7 commit bb0dfcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gmt_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ struct GMT_KEYWORD_DICTIONARY { /* Used for keyword-value lookup */
char separator; /* Single character separating 2 or more identical specifications [0 for no repeat] */
char short_option; /* Single character GMT option code */
char long_option[GMT_LEN256-1]; /* Name of corresponding long option */
char short_directives[GMT_LEN64]; /* Single character directives, comma-separated */
char long_directives[GMT_LEN256]; /* Long name directives, comma-separated */
char short_directives[GMT_LEN128]; /* Single character directives, comma-separated */
char long_directives[GMT_LEN512]; /* Long name directives, comma-separated */
char short_modifiers[GMT_LEN64]; /* Single character modifiers, comma-separated */
char long_modifiers[GMT_LEN256]; /* Long name modifiers, comma-separated */
unsigned int transproc_mask; /* Translation processing mask indicating special
Expand Down

0 comments on commit bb0dfcf

Please sign in to comment.