aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2023-11-10 22:29:34 +0100
committerThomas White <taw@physics.org>2024-02-06 16:59:34 +0100
commit3743dd93675fea19da3ea3ce2f7475ba4d9f3070 (patch)
treedd4af0b75b5f8b396014f0b6110eb059ed44f4f9 /tests
parente42773c17459e5bad58632b2792a3f18abb70178 (diff)
image_add_feature: Remove "image" argument
It hasn't been needed for ages.
Diffstat (limited to 'tests')
-rw-r--r--tests/stream_roundtrip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stream_roundtrip.c b/tests/stream_roundtrip.c
index d36191bb..79231b62 100644
--- a/tests/stream_roundtrip.c
+++ b/tests/stream_roundtrip.c
@@ -78,7 +78,7 @@ int main(int argc, char *argv[])
image->features = image_feature_list_new();
for ( i=0; i<N_PEAKS; i++ ) {
image_add_feature(image->features, peak_fs[i], peak_ss[i],
- peak_pn[i], image, peak_i[i], NULL);
+ peak_pn[i], peak_i[i], NULL);
}
st = stream_open_for_write("stream_roundtrip.stream", dtempl);