diff options
author | Thomas White <taw@physics.org> | 2011-05-19 18:30:50 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:26 +0100 |
commit | 9f2fab3e9c4232efed3c37d9d012b39b40bac716 (patch) | |
tree | 422d545fe5da6763acb7914610c5909166f08614 /src/stream.c | |
parent | c802a7fe6445abaab7ab949dbcf62644f6d1ac41 (diff) |
Rename cell_new_from_axes() to avoid confusion
Diffstat (limited to 'src/stream.c')
-rw-r--r-- | src/stream.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stream.c b/src/stream.c index 4157e34e..99344404 100644 --- a/src/stream.c +++ b/src/stream.c @@ -377,7 +377,9 @@ int read_chunk(FILE *fh, struct image *image) ERROR("Duplicate cell found in stream!\n"); cell_free(image->indexed_cell); } - image->indexed_cell = cell_new_from_axes(as, bs, cs); + image->indexed_cell = cell_new_from_reciprocal_axes(as, + bs, + cs); have_cell = 1; have_as = 0; have_bs = 0; have_cs = 0; } |