From 03f0ca3785e8ebc76505e9ad293861bef1720760 Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Wed, 14 Oct 2015 15:51:47 +0100 Subject: [PATCH] Typo in error message --- src/common_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common_io.c b/src/common_io.c index a22964dbf1..a09f9c9ac3 100644 --- a/src/common_io.c +++ b/src/common_io.c @@ -198,7 +198,7 @@ void writeStringAttribute(hid_t grp, char* name, const char* str, int length) { h_err = H5Tset_size(h_type, length); if (h_err < 0) { - error("Error while resizing attribute tyep to '%i'.", length); + error("Error while resizing attribute type to '%i'.", length); } h_attr = H5Acreate1(grp, name, h_type, h_space, H5P_DEFAULT); -- GitLab