Gitweb links:
...log
http://git.netsurf-browser.org/libnsfb.git/shortlog/b6e716f4ece4105eeaa2ff8971d1e0b6a78f73be
...commit
http://git.netsurf-browser.org/libnsfb.git/commit/b6e716f4ece4105eeaa2ff8971d1e0b6a78f73be
...tree
http://git.netsurf-browser.org/libnsfb.git/tree/b6e716f4ece4105eeaa2ff8971d1e0b6a78f73be
The branch, master has been updated
via b6e716f4ece4105eeaa2ff8971d1e0b6a78f73be (commit)
from f23427a39e21b1b613a5582181d8067b54aa645b (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/libnsfb.git/commit/?id=b6e716f4ece4105eeaa2ff8971d1e0b6a78f73be
commit b6e716f4ece4105eeaa2ff8971d1e0b6a78f73be
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>
plot/generic: Use better UNUSED() equivalent
Signed-off-by: Daniel Silverstone <[email protected]>
diff --git a/src/plot/generic.c b/src/plot/generic.c
index ea0bb04..15654b0 100644
--- a/src/plot/generic.c
+++ b/src/plot/generic.c
@@ -615,13 +615,13 @@ copy(nsfb_t *nsfb, nsfb_bbox_t *srcbox, nsfb_bbox_t
*dstbox)
static bool arc(nsfb_t *nsfb, int x, int y, int radius, int angle1,
int angle2, nsfb_colour_t c)
{
- nsfb=nsfb;
- x = x;
- y = y;
- radius = radius;
- c = c;
- angle1=angle1;
- angle2=angle2;
+ (void)nsfb;
+ (void)x;
+ (void)y;
+ (void)radius;
+ (void)c;
+ (void)angle1;
+ (void)angle2;
return true;
}
-----------------------------------------------------------------------
Summary of changes:
src/plot/generic.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/plot/generic.c b/src/plot/generic.c
index ea0bb04..15654b0 100644
--- a/src/plot/generic.c
+++ b/src/plot/generic.c
@@ -615,13 +615,13 @@ copy(nsfb_t *nsfb, nsfb_bbox_t *srcbox, nsfb_bbox_t
*dstbox)
static bool arc(nsfb_t *nsfb, int x, int y, int radius, int angle1,
int angle2, nsfb_colour_t c)
{
- nsfb=nsfb;
- x = x;
- y = y;
- radius = radius;
- c = c;
- angle1=angle1;
- angle2=angle2;
+ (void)nsfb;
+ (void)x;
+ (void)y;
+ (void)radius;
+ (void)c;
+ (void)angle1;
+ (void)angle2;
return true;
}
--
NetSurf Framebuffer library
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org