Skip to content

Commit

Permalink
Merge branch 'master' of github.com:dstndstn/astrometry.net
Browse files Browse the repository at this point in the history
  • Loading branch information
dstndstn committed Sep 13, 2015
2 parents bccf568 + 722d496 commit ac1b2f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion blind/resort-xylist.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ int resort_xylist(const char* infn, const char* outfn,
datstart = anqfits_data_start (anq, ext);

if (!anqfits_is_table(anq, ext)) {
ERROR("Extention %i isn't a table. Skipping", ext);
ERROR("Extension %i isn't a table. Skipping", ext);
continue;
}
// Copy the header as-is.
Expand Down
2 changes: 1 addition & 1 deletion util/subtable.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ int main(int argc, char *argv[]) {
}

if (!anqfits_is_table(anq, ext)) {
ERROR("extention %i isn't a table.\n", ext);
ERROR("Extension %i isn't a table.\n", ext);
// HACK - just copy it.
return -1;
}
Expand Down
2 changes: 1 addition & 1 deletion util/tabsort.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ int tabsort(const char* infn, const char* outfn, const char* colname,
datstart = anqfits_data_start (anq, ext);
datsize = anqfits_data_size (anq, ext);
if (!anqfits_is_table(anq, ext)) {
ERROR("Extention %i isn't a table. Skipping.\n", ext);
ERROR("Extension %i isn't a table. Skipping.\n", ext);
continue;
}
table = anqfits_get_table(anq, ext);
Expand Down

0 comments on commit ac1b2f9

Please sign in to comment.