Skip to content

Commit 8e4868a

Browse files
committed
Fix an error message
1 parent cdca728 commit 8e4868a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/cu/spatial.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ void Spatial::RunStep5(SpatialUnit u)
686686
if (u->niak > u->nak * Spatial::LSTCAP) {
687687
int cap = Spatial::LSTCAP;
688688
printError();
689-
TINKER_THROW(format("An internal array in Spatial2 requested %1$d elements, "
689+
TINKER_THROW(format("An internal array in Spatial requested %1$d elements, "
690690
"but only %4$d (%3$d*%2$d) were allocated. "
691691
"Please increase Spatial::LSTCAP (current value %3$d) "
692692
"so as to make Spatial::LSTCAP*%2$d >= %1$d.\n",

src/objc/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# printf "set (__T9_OBJC_SRC\n%s\n)\n" "$(LC_COLLATE=C ls -1a *.m)" > cmakesrc.txt
2+
cmake_minimum_required (VERSION 3.15)
23

34

45
enable_language (C)

0 commit comments

Comments
 (0)