Gitweb links:
...log
http://git.netsurf-browser.org/libnsutils.git/shortlog/6e45ee284b3ce23343683ceee527b8411c73f24f
...commit
http://git.netsurf-browser.org/libnsutils.git/commit/6e45ee284b3ce23343683ceee527b8411c73f24f
...tree
http://git.netsurf-browser.org/libnsutils.git/tree/6e45ee284b3ce23343683ceee527b8411c73f24f
The branch, master has been updated
via 6e45ee284b3ce23343683ceee527b8411c73f24f (commit)
from e23e67d6d15bdb73a96db836a6275a08ce7adc08 (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=6e45ee284b3ce23343683ceee527b8411c73f24f
commit 6e45ee284b3ce23343683ceee527b8411c73f24f
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
Fix m68k-amigaos build
uint32 isn't defined in the standard headers
diff --git a/src/time.c b/src/time.c
index 8c856d7..69da504 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;
- uint32 freq = 0;
+ ULONG 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 8c856d7..69da504 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;
- uint32 freq = 0;
+ ULONG 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