* 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:
@@ -9,7 +9,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
|
||||||
//#define TRACE_VALIDATION
|
#define TRACE_VALIDATION
|
||||||
#ifdef TRACE_VALIDATION
|
#ifdef TRACE_VALIDATION
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C"
|
extern "C"
|
||||||
@@ -68,7 +68,7 @@ sanitize_timing(uint16& display, uint16& syncStart, uint16& syncEnd,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (total > constraints.max_total) {
|
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);
|
__func__, total, constraints.max_total);
|
||||||
total = constraints.max_total;
|
total = constraints.max_total;
|
||||||
syncLength = min_c(syncLength, uint16(total - syncStart));
|
syncLength = min_c(syncLength, uint16(total - syncStart));
|
||||||
|
|||||||
Reference in New Issue
Block a user