Skip to content

Commit

Permalink
FIX: warning: conversion from 'size_t' to 'REBYTE', possible loss of …
Browse files Browse the repository at this point in the history
…data
  • Loading branch information
Oldes committed Jun 25, 2018
1 parent 973a8d3 commit 97e4216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/s-mold.c
Original file line number Diff line number Diff line change
Expand Up @@ -1467,5 +1467,5 @@ STOID Mold_Error(REBVAL *value, REB_MOLD *mold, REBFLG molded)
//for (c = 0; c <= MAX_URL_CHAR; c++) if (IS_LEX_DELIMIT(c)) cp[c] = ESC_URL;
for (c = 0; c <= ' '; c++) cp[c] = ESC_URL | ESC_FILE;
dc = ";%\"()[]{}<>";
for (c = LEN_BYTES(dc); c > 0; c--) URL_Escapes[*dc++] = ESC_URL | ESC_FILE;
for (c = (REBYTE)LEN_BYTES(dc); c > 0; c--) URL_Escapes[*dc++] = ESC_URL | ESC_FILE;
}

0 comments on commit 97e4216

Please sign in to comment.