Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/torch7.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/TH/THStorage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/TH/THStorage.c b/lib/TH/THStorage.c
index e57181c..9f86eb6 100644
--- a/lib/TH/THStorage.c
+++ b/lib/TH/THStorage.c
@@ -34,11 +34,11 @@ THLongStorage *THLongStorage_newInferSize(THLongStorage *size, ptrdiff_t nElemen
if (dim_infer != -1) {
THDescBuff buf = THLongStorage_sizeDesc(size);
THArgCheck(total_size > 0 && nElement % total_size == 0, 2,
- "size '%s' is invalid for input of with %td elements", buf.str, nElement);
+ "size '%s' is invalid for input with %td elements", buf.str, nElement);
} else {
THDescBuff buf = THLongStorage_sizeDesc(size);
THArgCheck(nElement == total_size, 2,
- "size '%s' is invalid for input of with %td elements", buf.str, nElement);
+ "size '%s' is invalid for input with %td elements", buf.str, nElement);
}
THLongStorage* copy = THLongStorage_newWithSize(size->size);
THLongStorage_copy(copy, size);