Commit 344805a8 authored by Peter Eastman's avatar Peter Eastman
Browse files

copyAndPadString() is now static

parent 8f8f0786
......@@ -100,7 +100,7 @@ void OPENMM_VEC3ARRAY_GET(const OpenMM_Vec3Array* const& array, const int&am
}
/* OpenMM_StringArray */
void copyAndPadString(char* dest, const char* source, int length) {
static void copyAndPadString(char* dest, const char* source, int length) {
bool reachedEnd = false;
for (int i = 0; i < length; i++) {
if (source[i] == 0)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment