You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/assign.c
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -967,7 +967,7 @@ const char *memrecycle(const SEXP target, const SEXP where, const int start, con
967
967
} break;
968
968
caseRAWSXP:
969
969
switch (TYPEOF(source)) {
970
-
caseINTSXP: CHECK_RANGE(int, INTEGER, val<0||val>255, val, _("%d (type '%s' at RHS position %d taken as 0 when assigning to type '%s' %s"))
970
+
caseINTSXP: CHECK_RANGE(int, INTEGER, val<0||val>255, val, _("%d (type '%s') at RHS position %d taken as 0 when assigning to type '%s' %s"))
971
971
caseREALSXP: if (sourceIsI64)
972
972
CHECK_RANGE(int64_t, REAL, val<0||val>255, val, _("%"PRId64" (type '%s') at RHS position %d taken as 0 when assigning to type '%s' %s"))
973
973
elseCHECK_RANGE(double, REAL, !R_FINITE(val) ||val<0.0||val>256.0|| (int)val!=val, val, _("%f (type '%s') at RHS position %d either truncated (precision lost) or taken as 0 when assigning to type '%s' %s"))
@@ -1061,7 +1061,7 @@ const char *memrecycle(const SEXP target, const SEXP where, const int start, con
0 commit comments