Hi all,
I get the following compilation warning when compiling an app. There's
no file name, but there is a line number.
-----------------------
Compilation Warnings
<snip some other warnings>
Encountered " "," ", "" at line 114, column 88.
Was expecting one of:
<EOF>
";" ...
-----------------------
Any idea of what to look for?
I tried searching the source to see what shows up on line 114 of every
file, but there's just too many to sift through:
find . -name '*.lzx' -exec sed -n '114{p;q;}' {} \;
-Antun