Gitweb links:
...log
http://git.netsurf-browser.org/libnsutils.git/shortlog/e23e67d6d15bdb73a96db836a6275a08ce7adc08
...commit
http://git.netsurf-browser.org/libnsutils.git/commit/e23e67d6d15bdb73a96db836a6275a08ce7adc08
...tree
http://git.netsurf-browser.org/libnsutils.git/tree/e23e67d6d15bdb73a96db836a6275a08ce7adc08
The branch, master has been updated
via e23e67d6d15bdb73a96db836a6275a08ce7adc08 (commit)
from 59ceb7f10f39ddb205a14779de3ba58224f93254 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/libnsutils.git/commit/?id=e23e67d6d15bdb73a96db836a6275a08ce7adc08
commit e23e67d6d15bdb73a96db836a6275a08ce7adc08
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
The EClock frequency is unsigned
diff --git a/src/time.c b/src/time.c
index 1f79857..8c856d7 100644
--- a/src/time.c
+++ b/src/time.c
@@ -62,7 +62,7 @@ nsuerror nsu_getmonotonic_ms(uint64_t *current_out)
current = (mts.tv_sec * 1000) + (mts.tv_nsec / 1000000);
#elif defined(__amiga)
struct EClockVal eclockval;
- int freq = 0;
+ uint32 freq = 0;
uint64_t eclock;
/* NB: The calling task must already have opened timer.device
-----------------------------------------------------------------------
Summary of changes:
src/time.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/time.c b/src/time.c
index 1f79857..8c856d7 100644
--- a/src/time.c
+++ b/src/time.c
@@ -62,7 +62,7 @@ nsuerror nsu_getmonotonic_ms(uint64_t *current_out)
current = (mts.tv_sec * 1000) + (mts.tv_nsec / 1000000);
#elif defined(__amiga)
struct EClockVal eclockval;
- int freq = 0;
+ uint32 freq = 0;
uint64_t eclock;
/* NB: The calling task must already have opened timer.device
--
NetSurf generalised utility library
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org