Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/ebb2a33b0b68104920abbfa2c447595d2c3a2010
...commit
http://git.netsurf-browser.org/netsurf.git/commit/ebb2a33b0b68104920abbfa2c447595d2c3a2010
...tree
http://git.netsurf-browser.org/netsurf.git/tree/ebb2a33b0b68104920abbfa2c447595d2c3a2010
The branch, master has been updated
via ebb2a33b0b68104920abbfa2c447595d2c3a2010 (commit)
from 9aecf47408f22f4f0a01e41648f25e1a7307b332 (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=ebb2a33b0b68104920abbfa2c447595d2c3a2010
commit ebb2a33b0b68104920abbfa2c447595d2c3a2010
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
Missing TAG_DONE (thx capehill)
diff --git a/frontends/amiga/gui.c b/frontends/amiga/gui.c
index 8ad21b3..8672a93 100644
--- a/frontends/amiga/gui.c
+++ b/frontends/amiga/gui.c
@@ -5550,7 +5550,7 @@ int main(int argc, char** argv)
/* Check for AltiVec */
uint32 altivec = 0;
- GetCPUInfoTags(GCIT_VectorUnit, &altivec);
+ GetCPUInfoTags(GCIT_VectorUnit, &altivec, TAG_DONE);
if(altivec == VECTORTYPE_ALTIVEC) {
LOG("AltiVec detected");
diff --git a/frontends/amiga/schedule.c b/frontends/amiga/schedule.c
index 8abdca5..ff93e90 100644
--- a/frontends/amiga/schedule.c
+++ b/frontends/amiga/schedule.c
@@ -375,5 +375,6 @@ void ami_schedule_handle(struct MsgPort *nsmsgport)
LOG("timereq err = %d (should be 0)",
timermsg->timereq.Request.io_Error);
ami_scheduler_run(timermsg);
};
+ LOG("timermsg %p (0)", timermsg);
}
-----------------------------------------------------------------------
Summary of changes:
frontends/amiga/gui.c | 2 +-
frontends/amiga/schedule.c | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/frontends/amiga/gui.c b/frontends/amiga/gui.c
index 8ad21b3..8672a93 100644
--- a/frontends/amiga/gui.c
+++ b/frontends/amiga/gui.c
@@ -5550,7 +5550,7 @@ int main(int argc, char** argv)
/* Check for AltiVec */
uint32 altivec = 0;
- GetCPUInfoTags(GCIT_VectorUnit, &altivec);
+ GetCPUInfoTags(GCIT_VectorUnit, &altivec, TAG_DONE);
if(altivec == VECTORTYPE_ALTIVEC) {
LOG("AltiVec detected");
diff --git a/frontends/amiga/schedule.c b/frontends/amiga/schedule.c
index 8abdca5..ff93e90 100644
--- a/frontends/amiga/schedule.c
+++ b/frontends/amiga/schedule.c
@@ -375,5 +375,6 @@ void ami_schedule_handle(struct MsgPort *nsmsgport)
LOG("timereq err = %d (should be 0)",
timermsg->timereq.Request.io_Error);
ami_scheduler_run(timermsg);
};
+ LOG("timermsg %p (0)", timermsg);
}
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org