Fix formatting of new(std::nothrow)
The code previously formatted everything as `new( std::nothrow)`.
This commit is contained in:
@ -21,7 +21,7 @@
|
||||
|
||||
static void* pam_backend_auth_alloc(void* instance)
|
||||
{
|
||||
PamBackendSession* pses = new( std::nothrow) PamBackendSession();
|
||||
PamBackendSession* pses = new(std::nothrow) PamBackendSession();
|
||||
return pses;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user