Skip to content

Commit eb9390f

Browse files
author
Meghan Jones
committed
Add (void) before gmt_getpen
1 parent 5273704 commit eb9390f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gmt_support.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13539,7 +13539,7 @@ int gmt_getpanel (struct GMT_CTRL *GMT, char option, char *text, struct GMT_MAP_
1353913539
P->radius = GMT->session.u2u[GMT_PT][GMT_INCH] * GMT_FRAME_RADIUS; /* 6 pt */
1354013540
gmt_init_fill (GMT, &P->fill, -1.0, -1.0, -1.0); /* Default is no fill unless specified */
1354113541
gmt_init_fill (GMT, &P->sfill, gmt_M_is255 (127), gmt_M_is255 (127), gmt_M_is255 (127)); /* Default if gray shade is used */
13542-
gmt_getpen (GMT, "thicker,black", &P->pen1); /* Heavier pen for main outline */
13542+
(void) gmt_getpen (GMT, "thicker,black", &P->pen1); /* Heavier pen for main outline */
1354313543
P->pen2 = GMT->current.setting.map_default_pen; /* Thinner pen for optional inner outline */
1354413544
P->debug_pen = GMT->current.setting.map_default_pen; /* Thinner pen for optional inner outline */
1354513545
P->gap = GMT->session.u2u[GMT_PT][GMT_INCH] * GMT_FRAME_GAP; /* Default is 2p */

0 commit comments

Comments
 (0)