- Timestamp:
- Aug 9, 2017, 12:47:22 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ohana.20170809/src/libfits/header/F_scan.c
r39324 r40113 89 89 // XXX is this safe for 64bit off_t and 32bit off_t? 90 90 // XXX the problem is that we read FITS files on many machine types: I need to ensure 91 // that we are portable -- this s seems inconsistent91 // that we are portable -- this seems inconsistent 92 92 if (!strcmp (mode, "%jd")) { *va_arg (argp, intmax_t *) = value; return (TRUE); } 93 93 … … 168 168 /* all others require '=' in column p + 1 + strlen(field) */ 169 169 Nfield = strlen (field); 170 if (p[Nfield + 1] != '=') return (FALSE); 170 if (p[Nfield + 1] != '=') return (FALSE); // probably redundant since gfits_header_hierarch_field requires this condition 171 171 172 172 /* comment from data line */
Note:
See TracChangeset
for help on using the changeset viewer.
