IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4327


Ignore:
Timestamp:
Jun 20, 2005, 2:58:36 PM (21 years ago)
Author:
jhoblitt
Message:

suppress a type warning by casting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/glueforge/templates/psdb/pop_c.tt

    r4326 r4327  
    99    psDB            *dbh;
    1010[% FOREACH item = columns -%]
    11 [% IF item.ctype == "char*" -%]
     11[% IF item.type == "STR" -%]
    1212    [% indented("char", "$item.name[256]") %];
    1313[% ELSE-%]
     
    2525[% FOREACH item = columns -%]
    2626[% IF i == 0 %][% i = 1 %][% ELSE %], [% END -%]
     27[% IF item.type == "STR" -%]
     28(char **)&[% item.name -%]
     29[% ELSE-%]
    2730&[% item.name -%]
     31[% END -%]
    2832[% END %])) {
    2933        exit(EXIT_FAILURE);
Note: See TracChangeset for help on using the changeset viewer.