12 lines
182 B
Diff
12 lines
182 B
Diff
--- ntext.cc
|
|
+++ ntext.cc
|
|
@@ -244,7 +244,7 @@
|
|
return;
|
|
}
|
|
|
|
- p = strchr(text, '\n');
|
|
+ p = strchr((char *)text, '\n');
|
|
if (p!=NULL) {
|
|
*p = 0;
|
|
i = strlen(text);
|