Skip to content

Commit 5b8cd9f

Browse files
author
ripley
committed
LTO-detected mismatches
git-svn-id: https://svn.r-project.org/R/trunk@87864 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 8898e12 commit 5b8cd9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/platform.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2434,9 +2434,9 @@ attribute_hidden SEXP do_pathexpand(SEXP call, SEXP op, SEXP args, SEXP rho)
24342434
}
24352435

24362436
#ifdef Unix
2437-
static int var_R_can_use_X11 = -1;
2437+
static Rboolean var_R_can_use_X11 = -1;
24382438

2439-
extern bool R_access_X11(void); /* from src/unix/X11.c */
2439+
extern Rboolean R_access_X11(void); /* from src/unix/X11.c */
24402440

24412441
static bool R_can_use_X11(void)
24422442
{
@@ -2572,7 +2572,7 @@ attribute_hidden SEXP do_capabilities(SEXP call, SEXP op, SEXP args, SEXP rho)
25722572
LOGICAL(ans)[i] = TRUE; /* also AQUA ? */
25732573
} else {
25742574
#if defined(HAVE_LIBREADLINE)
2575-
extern bool UsingReadline;
2575+
extern Rboolean UsingReadline;
25762576
if (R_Interactive && UsingReadline) LOGICAL(ans)[i] = TRUE;
25772577
#endif
25782578
}

0 commit comments

Comments
 (0)