1. [NUL] Re: No Subject
On Sat, 28 Oct 2000, you wrote:
> i've been experimenting with library routines for sprites by collin taylor.
> When i run a program using the libraries i get an error message on
> execution:-
>
>
> c:\\euphoria\include\bitmap.e :428.call to getc() might be short circuited
>
> does anybody know what the message could be referring to?
> thanks!
I think it's not an error. but is a warning.
There's probably a call somethingl like:
if x = 0 and getc().....
Euphoria is telling you that getc() won't be executed if x != 0
You can turn the warnings off with "without warning" at the top
of your code.
--
Regards,
Irv