Skip to content

Commit 7384765

Browse files
committed
FIX: using system output to print version info
related to: Oldes/Rebol-issues#1862
1 parent 3d83cac commit 7384765

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/b-init.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ extern const REBYTE Str_Banner[];
117117
***********************************************************************/
118118
{
119119
if (rargs->options & RO_VERS) {
120-
puts(REBOL_VERSION);
120+
Out_Str(cb_cast(REBOL_VERSION), 0, FALSE);
121121
OS_EXIT(0);
122122
}
123123
}

0 commit comments

Comments
 (0)