Skip to content

Commit

Permalink
Fixed return values.
Browse files Browse the repository at this point in the history
  • Loading branch information
akallabeth committed Nov 3, 2015
1 parent b83356a commit b5288da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions winpr/libwinpr/path/path.c
Original file line number Diff line number Diff line change
Expand Up @@ -596,13 +596,13 @@ HRESULT PathCchRemoveExtensionW(PWSTR pszPath, size_t cchPath)
BOOL PathCchIsRootA(PCSTR pszPath)
{
WLog_ERR(TAG, "%s: not implemented", __FUNCTION__);
return E_NOTIMPL;
return FALSE;
}

BOOL PathCchIsRootW(PCWSTR pszPath)
{
WLog_ERR(TAG, "%s: not implemented", __FUNCTION__);
return E_NOTIMPL;
return FALSE;
}

/**
Expand Down

0 comments on commit b5288da

Please sign in to comment.