blob: 9756335940ecd6fc2858d2501f472e9631da823b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
--- src/Main.cpp.orig Fri May 9 16:24:51 2003
+++ src/Main.cpp Fri May 9 16:25:41 2003
@@ -599,7 +599,7 @@
return;
}
- if(output.CreateFile((no_output==0) ? destfile : "")==0)
+ if(output.CreateFile((no_output==0) ? destfile : (char *)"")==0)
{
Error("Could not create output file '");
ErrorCont(destfile);
@@ -816,7 +816,7 @@
globallabeldict.Init();
- if(output.CreateFile((no_output==0) ? destfile : "")==0)
+ if(output.CreateFile((no_output==0) ? destfile : (char *)"")==0)
{
Error("Could not create output file '");
ErrorCont(destfile);
@@ -905,4 +905,4 @@
{
return malloc(size);
}
-*/
\ No newline at end of file
+*/
|