use POINTER() captitalization consistently

This commit is contained in:
Axel Kohlmeyer
2025-01-27 11:17:04 -05:00
parent a242511ce7
commit 0fde98cfbc

View File

@ -1607,14 +1607,14 @@ class lammps(object):
def addstep_compute(self, nextstep):
with ExceptionCheck(self):
nextstep = self.c_bigint(nextstep)
return self.lib.lammps_addstep_compute(self.lmp, pointer(nextstep))
return self.lib.lammps_addstep_compute(self.lmp, POINTER(nextstep))
# -------------------------------------------------------------------------
def addstep_compute_all(self, nextstep):
with ExceptionCheck(self):
nextstep = self.c_bigint(nextstep)
return self.lib.lammps_addstep_compute_all(self.lmp, pointer(nextstep))
return self.lib.lammps_addstep_compute_all(self.lmp, POINTER(nextstep))
# -------------------------------------------------------------------------