diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-09-04 10:16:18 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-11 19:44:55 +0200 |
commit | 1412a7655c53452721d19813b0ab4a1afd2b0744 (patch) | |
tree | 12215b04f88144f0ecdf402b7b25da410ae1dd69 /src | |
parent | ed242170141dc0e0fa6308f9fcfa0a71805bf8cd (diff) | |
download | sssd-1412a7655c53452721d19813b0ab4a1afd2b0744.tar.gz sssd-1412a7655c53452721d19813b0ab4a1afd2b0744.tar.bz2 sssd-1412a7655c53452721d19813b0ab4a1afd2b0744.zip |
Use right formating to print string
format specifies type 'int' but the argument has type 'const char *'
Diffstat (limited to 'src')
-rw-r--r-- | src/providers/ipa/ipa_subdomains_ext_groups.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_subdomains_ext_groups.c b/src/providers/ipa/ipa_subdomains_ext_groups.c index a217c6a8..7df3dbbb 100644 --- a/src/providers/ipa/ipa_subdomains_ext_groups.c +++ b/src/providers/ipa/ipa_subdomains_ext_groups.c @@ -204,7 +204,7 @@ static errno_t find_ipa_ext_memberships(TALLOC_CTX *mem_ctx, } if (result->count == 0) { - DEBUG(SSSDBG_MINOR_FAILURE, ("User [%d] not found in cache.\n", + DEBUG(SSSDBG_MINOR_FAILURE, ("User [%s] not found in cache.\n", user_name)); ret = EOK; goto done; |