Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Nov 22, 2024
1 parent 4cbf236 commit cd21d88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gmtlogo.c
Original file line number Diff line number Diff line change
Expand Up @@ -451,12 +451,12 @@ EXTERN_MSC int GMT_gmtlogo (void *V_API, int mode, void *args) {
gmt_letters[idx][1] = NAN;
idx += 1;
memcpy(gmt_letters + idx, gmt_letters_g, sizeof(gmt_letters_g));
idx += sizeof(gmt_letters_g);
idx += GMT_N_LETTERS_G;
gmt_letters[idx][0] = NAN;
gmt_letters[idx][1] = NAN;
idx += 1;
memcpy(gmt_letters + idx, gmt_letters_m, sizeof(gmt_letters_m));
idx += sizeof(gmt_letters_m);
idx += GMT_N_LETTERS_M;
gmt_letters[idx][0] = NAN;
gmt_letters[idx][1] = NAN;
idx += 1;
Expand Down

0 comments on commit cd21d88

Please sign in to comment.