Ignore:
Timestamp:
Feb 24, 2012, 12:37:36 PM (12 years ago)
Author:
frichard
Message:

-Alignement des antennes
-Version 0.0.9 de libindi

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BAORadio/libindi/libindi/tools/evalINDI.c

    r490 r642  
    347347{
    348348        char *t = tagXMLEle (root);
    349         char *d = findXMLAttValu (root, "device");
    350         char *n = findXMLAttValu (root, "name");
     349        const char *d = findXMLAttValu (root, "device");
     350        const char *n = findXMLAttValu (root, "name");
    351351        int nset = 0;
    352352        double v;
     
    397397
    398398        /* check special elements */
    399         t = findXMLAttValu (root, "state");
     399        t = (char *) findXMLAttValu (root, "state");
    400400        if (t[0]) {
    401401            sprintf (prop, "%s.%s._STATE", d, n);
     
    407407            }
    408408        }
    409         t = findXMLAttValu (root, "timestamp");
     409        t = (char *) findXMLAttValu (root, "timestamp");
    410410        if (t[0]) {
    411411            sprintf (prop, "%s.%s._TS", d, n);
Note: See TracChangeset for help on using the changeset viewer.