mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 00:14:44 +01:00
Fix compiler warnings about format specifiers with DEBUG set
As for %s when the pointer is null: even if gcc prints (null) this is still undefined behavior, so we should do this explicitly Signed-off-by: Ryan Lee <ryan.lee@canonical.com>
This commit is contained in:
parent
6d20a10606
commit
776c56bd7e
2 changed files with 2 additions and 2 deletions
|
@ -245,7 +245,7 @@ static inline void sd_write_uint64(std::ostringstream &buf, u64 b)
|
|||
|
||||
static inline void sd_write_name(std::ostringstream &buf, const char *name)
|
||||
{
|
||||
PDEBUG("Writing name '%s'\n", name);
|
||||
PDEBUG("Writing name '%s'\n", name ? name : "(null)");
|
||||
if (name) {
|
||||
sd_write8(buf, SD_NAME);
|
||||
sd_write16(buf, strlen(name) + 1);
|
||||
|
|
|
@ -704,7 +704,7 @@ rules: rules opt_prefix block
|
|||
if (($2).priority != 0) {
|
||||
yyerror(_("priority is not allowed on rule blocks"));
|
||||
}
|
||||
PDEBUG("matched: %s%s%sblock\n",
|
||||
PDEBUG("matched: %s%s%s%sblock\n",
|
||||
$2.audit == AUDIT_FORCE ? "audit " : "",
|
||||
$2.rule_mode == RULE_DENY ? "deny " : "",
|
||||
$2.rule_mode == RULE_PROMPT ? "prompt " : "",
|
||||
|
|
Loading…
Add table
Reference in a new issue