diff options
-rw-r--r-- | source3/nsswitch/pam_winbind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/pam_winbind.c b/source3/nsswitch/pam_winbind.c index fde5b03611..f00db39b45 100644 --- a/source3/nsswitch/pam_winbind.c +++ b/source3/nsswitch/pam_winbind.c @@ -70,7 +70,7 @@ static void _pam_log_int(const pam_handle_t *pamh, _pam_get_item(pamh, PAM_SERVICE, &service); - format2 = malloc(strlen(MODULE_NAME)+strlen(format)+strlen(service)+5); + format2 = (char *)malloc(strlen(MODULE_NAME)+strlen(format)+strlen(service)+5); if (format2 == NULL) { /* what else todo ? */ vsyslog(err, format, args); |