Commit 4bfac61b authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

fix typo in gzip support for fix reax/bonds

parent e9ed95c2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ FixReaxBonds::FixReaxBonds(LAMMPS *lmp, int narg, char **arg) :
    if (suffix && strcmp(suffix,".gz") == 0) {
#ifdef LAMMPS_GZIP
      char gzip[128];
      snprintf(gzip128,,"gzip -6 > %s",arg[4]);
      snprintf(gzip,128,"gzip -6 > %s",arg[4]);
#ifdef _WIN32
      fp = _popen(gzip,"wb");
#else