diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-04-18 10:34:23 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-04-18 10:34:23 +0000 |
commit | f332c2881c4a2eef422ed1631a8335d07e9818ad (patch) | |
tree | 42cb6be11bcc49a078767c5b9795bdab9d40e2af /demos | |
parent | 0a37ec19f6b6c33c157f8280359e7c4468c26ae1 (diff) | |
download | ChibiOS-f332c2881c4a2eef422ed1631a8335d07e9818ad.tar.gz ChibiOS-f332c2881c4a2eef422ed1631a8335d07e9818ad.tar.bz2 ChibiOS-f332c2881c4a2eef422ed1631a8335d07e9818ad.zip |
Fixed bug 2772237.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@911 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r-- | demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c b/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c index c9b3b395e..d064e1ef3 100644 --- a/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c +++ b/demos/ARM7-AT91SAM7X-WEB-GCC/web/webthread.c @@ -83,7 +83,7 @@ void clock_init(void) {} clock_time_t clock_time( void )
{
- return chSysGetTime();
+ return chTimeNow();
}
/*
|