From 812363fb992a79aea2b4cf00ff52d0e1dcb6f7ff Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 12 Jan 2023 18:24:04 -0500 Subject: [PATCH] lammpsplugin bugfix from Stan --- examples/COUPLE/plugin/liblammpsplugin.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/COUPLE/plugin/liblammpsplugin.h b/examples/COUPLE/plugin/liblammpsplugin.h index 52ed781818..29f9b7f5a9 100644 --- a/examples/COUPLE/plugin/liblammpsplugin.h +++ b/examples/COUPLE/plugin/liblammpsplugin.h @@ -152,9 +152,9 @@ struct _liblammpsplugin { * caller must match to how LAMMPS library is built */ #ifndef LAMMPS_BIGBIG - void (*create_atoms)(void *, int, int *, int *, double *, double *, int *, int); + int (*create_atoms)(void *, int, int *, int *, double *, double *, int *, int); #else - void (*create_atoms)(void *, int, int64_t *, int *, double *, double *, int64_t *, int); + int (*create_atoms)(void *, int, int64_t *, int *, double *, double *, int64_t *, int); #endif int (*find_pair_neighlist)(void *, const char *, int, int, int);