[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Ton of "differ in signedness" warnings?
- To: hobbit (at) hswn.dk
- Subject: Ton of "differ in signedness" warnings?
- From: Cade Robinson <cade.robinson (at) gmail.com>
- Date: Wed, 17 Feb 2010 11:02:48 -0600
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:content-type :date:message-id:mime-version:x-mailer; bh=h4pg50gV43K2nE8REcKg+ueqzBb2QojMmP0PAUmtcDo=; b=BZCgoMwxcrY+cckX6tENvne/BtMJYP6c2GSWgDQBy/qA730yvFhDLbvUBVBrNTbiBd R2PIl6lIXei/YsDh6CyJmiDIdhIDK2LWEQdx+3u/zTuhj8ZQDrKa2avG6cI0PqW0GKSQ uOWZZX9h4nmEUYxm/KOfzrHtyszCFC229xetA=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:content-type:date:message-id:mime-version:x-mailer; b=SEMS59vpFIZrrqCp9JvqN0AF1aQCZmplltOdXO/a68GZ+wV3PG6UFH7yAPWQYb0rXe 0aiK6eg/YNHh/BKb+m2yslLh7DB9xv4OuJ14wSyhgbmB4VDO8ONpYkMHZECs+mw4Egv3 zOh8SS+LuImmYPzGZWVKJV7ud5QGRhWyUMeP0=
When I compile I get a TON of "differ in signedness" warnings.
Everything compiles but I am wondering about the warnings.
Looking up the error it looks like "just ignore them" is the answer but
should I?
Why is there something like this:
unsigned char *message;
or
static unsigned char *cause = NULL;
I am guessing these are strings - so why the unsigned?