i.modis.qc currently generates a number of warnings:

qc250b.c:14: warning: statement with no effect
qc250c.c:20: warning: statement with no effect
qc250d.c:12: warning: statement with no effect
qc250e.c:12: warning: statement with no effect
qc250f.c:12: warning: statement with no effect
qc500c.c:22: warning: statement with no effect
qc500d.c:12: warning: statement with no effect
qc500e.c:12: warning: statement with no effect

These all relate to code such as:

    qctemp >> 2;                /*bits [2-3] become [0-1] */

Is this supposed to be:

    qctemp >>= 2;
or:
    pixel >>= 2;

instead?

-- 
Glynn Clements <[EMAIL PROTECTED]>
_______________________________________________
grass-dev mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/grass-dev

Reply via email to