Skip to content

Commit

Permalink
fix starting index
Browse files Browse the repository at this point in the history
  • Loading branch information
AlysonStahl-NOAA committed Sep 6, 2024
1 parent b039834 commit c1d9c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pdstemplates.c
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ extpdstemplate(g2int number, g2int *list)
{
new->extlen = list[5] * 5;
new->ext = malloc(sizeof(g2int) * new->extlen);
for (i=1; i < list[5]; i++)
for (i=0; i < list[5]; i++)
{
l = i * 5;
new->ext[l] = 2;
Expand Down

0 comments on commit c1d9c09

Please sign in to comment.