186
Structured Text Errors Appendix B
Warning Messages
Warning message Cause of warning Example
Keyword '%s' is redundant The keyword has been used
in an invalid location. For
example, use of the EXIT
statement outside a loop syn-
tax.
Conversion from '%s' to '%s',
possible loss of data
Data may be lost due to con-
version of a data type with a
large data size to a data type
with a small data size.
Y:=DINT_TO_INT(X); (*X is a DINT type variable, Y is an
INT type variable*)