Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/640ee36cff442f4dcb8c1...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/640ee36cff442f4dcb8c193...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/640ee36cff442f4dcb8c193ba...
The branch, master has been updated
via 640ee36cff442f4dcb8c193ba6bc009c76f4e5bb (commit)
from 67c1c65bf2ef7752c036563e4dda4bea064569b2 (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/netsurf.git/commit/?id=640ee36cff442f4dcb8...
commit 640ee36cff442f4dcb8c193ba6bc009c76f4e5bb
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
add missing include for amiga os 3 strtoull
diff --git a/utils/utils.c b/utils/utils.c
index b260f37..bce406d 100644
--- a/utils/utils.c
+++ b/utils/utils.c
@@ -284,6 +284,8 @@ char *human_friendly_bytesize(unsigned long long int bsize) {
#ifndef HAVE_STRTOULL
+#include <stdlib.h>
+
/**
* string to unsigned long long
*
-----------------------------------------------------------------------
Summary of changes:
utils/utils.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/utils/utils.c b/utils/utils.c
index b260f37..bce406d 100644
--- a/utils/utils.c
+++ b/utils/utils.c
@@ -284,6 +284,8 @@ char *human_friendly_bytesize(unsigned long long int bsize) {
#ifndef HAVE_STRTOULL
+#include <stdlib.h>
+
/**
* string to unsigned long long
*
--
NetSurf Browser