Skip to content
Snippets Groups Projects
Commit cb695ae9 authored by Heikki Linnakangas's avatar Heikki Linnakangas
Browse files

Silence compiler warning.

Not all compilers understand that the elog(ERROR) never returns.

David Rowley
parent f1169ab5
No related branches found
No related tags found
No related merge requests found
......@@ -160,6 +160,7 @@ encrypt_password(PasswordType target_type, const char *role,
* handle every combination of source and target password types.
*/
elog(ERROR, "cannot encrypt password to requested type");
return NULL; /* keep compiler quiet */
}
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment