* Fix build due to missing comma in r42823

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42824 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Joseph Prostko 2011-10-11 18:10:20 +00:00
parent 44db4996ae
commit 7c7c2f12c1

View File

@ -9,7 +9,7 @@
#include <string.h>
//#define TRACE_VALIDATION
#define TRACE_VALIDATION
#ifdef TRACE_VALIDATION
#ifdef __cplusplus
extern "C"
@ -68,7 +68,7 @@ sanitize_timing(uint16& display, uint16& syncStart, uint16& syncEnd,
}
if (total > constraints.max_total) {
TRACE("%s: total(%" B_PRIu16 ") > max_total(%" B_PRIu16 ")\n"
TRACE("%s: total(%" B_PRIu16 ") > max_total(%" B_PRIu16 ")\n",
__func__, total, constraints.max_total);
total = constraints.max_total;
syncLength = min_c(syncLength, uint16(total - syncStart));