summaryrefslogtreecommitdiffstats
path: root/sub_cc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sub_cc.c')
-rw-r--r--sub_cc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sub_cc.c b/sub_cc.c
index 0246f25705..2e3123f7bf 100644
--- a/sub_cc.c
+++ b/sub_cc.c
@@ -100,7 +100,7 @@ static void append_char(char c)
{
if(cursor_pos==CC_MAX_LINE_LENGTH-1)
{
- printf("sub_cc.c: append_char() reached CC_MAX_LINE_LENGTH!\n");
+ fprintf(stderr,"sub_cc.c: append_char() reached CC_MAX_LINE_LENGTH!\n");
return;
}
bb->text[bb->lines - 1][cursor_pos++]=c;