Error in HT-PIC

i'm using salvo lite 3.2.3 and HT-PIC18 compiler 9.50.when i try to compile example coding i'm getting error
Error[924]:missing argument to "-I" option
what is the problem.. help please
------------------
Vijay S
what is the problem.. help please
------------------
Vijay S
------------------
Assuming a system timer of 100Hz (i.e. OSTimer() is called every 10ms), then OS_Delay(1) will give a delay that ranges from 0 to 20ms (+/- 1 tick is the standard resolution of timing functions in the API).
So, for more accurate 10ms periodicity, you need to call OSTimer() at a higher rate. E.g. call it at 500Hz, and use OS_Delay(5) -- this gives you 10ms +/- 2ms, which is reasonably accurate. Note that calling OSDelay() at 500Hz suggests that you should be running your PIC at 20MHz or so for best performance.
code:void my_periodic_task (void) {
while (1) {
OS_DelayTS(5, label);
.... //do something
}
}
results in do something happening every 5 system ticks.
------------------