Introduction
Introduction Statistics Contact Development Disclaimer Help
duckduckgo: just use int, not ssize_t - frontends - front-ends for some sites (…
Log
Files
Refs
README
LICENSE
---
commit 1241dd1ab43f65c6a6eaace18adac407da38f63b
parent 3bd1b33c5fd37216f8a721d9fac3148345365c0f
Author: Hiltjo Posthuma <[email protected]>
Date: Fri, 22 Jan 2021 13:35:50 +0100
duckduckgo: just use int, not ssize_t
Diffstat:
M duckduckgo/duckduckgo.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/duckduckgo/duckduckgo.c b/duckduckgo/duckduckgo.c
@@ -87,7 +87,7 @@ xmlattrentity(XMLParser *x, const char *t, size_t tl, const c…
const char *v, size_t vl)
{
char buf[16];
- ssize_t len;
+ int len;
if (!isresult || !istitle || !isdescription || !isurl)
return;
@@ -117,7 +117,7 @@ void
xmldataentity(XMLParser *x, const char *d, size_t dl)
{
char buf[16];
- ssize_t len;
+ int len;
if (!isresult || !istitle || !isdescription || !isurl)
return;
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.