소스 검색

fixed floating point to integer conversion problem with logging to database

Sebastian 6 년 전
부모
커밋
7e4660524f
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      CoffeeCode/buildno
  2. 1 1
      CoffeeCode/hal.cpp

+ 1 - 1
CoffeeCode/buildno

@@ -1 +1 @@
-275
+277

+ 1 - 1
CoffeeCode/hal.cpp

@@ -276,7 +276,7 @@ void halIntFlow(void) {
 	clock_gettime(CLOCK_REALTIME, &flowTimestep[flowIndex]);
 	timespec_diff(&flowTimestep[((flowIndex + 1) % 2)], &flowTimestep[flowIndex], &deltaT);
 
-	if (sqlLogFlow(1, halGetFlow(), deltaT.tv_sec * 1000 + deltaT.tv_nsec/1000000)) {
+	if (sqlLogFlow(2, halGetFlow()*1000, deltaT.tv_sec * 1000 + deltaT.tv_nsec/1000000)) {
 		logger_error("hal.cpp: could not log flow to database!");
 		return;
 	}