[<prev] [next>] [day] [month] [year] [list]
Message-ID: <AANLkTi=zYzbz2cGXc-XWnF_vDk-4e4Qv+aUMROscrJHx@mail.gmail.com>
Date: Thu, 13 Jan 2011 00:53:44 -0700
From: Jeffrey Merkey <jeffmerkey@...il.com>
To: linux-kernel@...r.kernel.org
Subject: gcc NULL strings passed from ternary operators in kernel modules
interesting case with gcc. The following code example:
printk("%s\n", (value & 1) "set": "clear");
will evaluate to NULL unless the ":" character has a space after
static string declaration.
this version
printk("%s\n", (value & 1) "set" : "clear");
works.
go figure. Looks like gcc assumes this case is a C++ construct of
some sort and
evaluates it to NULL.
Jeff
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists