From: Brett Gordon Date: Thu, 23 Jun 2016 16:57:46 +0000 (-0400) Subject: dwtime: revise call to dw_transaction for recent call change X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=3892086590df75beb0f58a8cd3ae65adb62da874;p=FUZIX.git dwtime: revise call to dw_transaction for recent call change --- diff --git a/Kernel/platform-coco3/dwtime.c b/Kernel/platform-coco3/dwtime.c index 9b54dd65..1556e657 100644 --- a/Kernel/platform-coco3/dwtime.c +++ b/Kernel/platform-coco3/dwtime.c @@ -16,7 +16,7 @@ static int get_time( uint8_t *tbuf ) int ret; tbuf[0]=0x23; - ret=dw_transaction( tbuf, 1, tbuf, 6 ); + ret=dw_transaction( tbuf, 1, tbuf, 6, 0 ); if( ret ) return -1; secs = tbuf[5]; return 0;