Commit 27354151 27354151ed245f4877c8f8aa773f3111ec14d373 by Sergey Poznyakoff

Fixed typecasts.

1 parent e636d13f
......@@ -85,8 +85,8 @@ pop3d_apopuser (const char *user)
if (password == NULL)
return NULL;
sprintf (password, "%.*s", (char*) MU_DATUM_SIZE(data),
(int) MU_DATUM_PTR(data));
sprintf (password, "%.*s", (int) MU_DATUM_SIZE(data),
(char*) MU_DATUM_PTR(data));
return password;
}
#else /* !USE_DBM */
......