From 142a67fe82b830e5c7816914afa62445959c87ca Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@fe.uni-lj.si> Date: Tue, 05 Nov 2013 14:04:21 +0000 Subject: [PATCH] changes in bondflip call. No need to bondflip all the bonds, but only as many bonds as there are vertices. Also, rnvec seems to be not needed for bondflip, so it is commented out --- src/general.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/general.c b/src/general.c index b078f87..ed06398 100644 --- a/src/general.c +++ b/src/general.c @@ -3,9 +3,11 @@ #include "general.h" #include<stdarg.h> -ts_uint ts_fprintf(FILE *fd, char *fmt, va_list ap){ +ts_uint ts_fprintf(FILE *fd, char *fmt, ...){ if(quiet) return TS_SUCCESS; -fprintf(fd, fmt, ap); /* Call vprintf */ + va_list ap; + va_start(ap,fmt); +vfprintf(fd, fmt, ap); /* Call vfprintf */ va_end(ap); /* Cleanup the va_list */ return TS_SUCCESS; } -- Gitblit v1.9.3