mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 10:04:00 +08:00
ntfsusermap.c: Fix warning about implicit conversion between enums.
This commit is contained in:
parent
f0d3751c98
commit
b11a5ea91b
@ -237,7 +237,7 @@ static boolean close_volume(const char *volume)
|
|||||||
{
|
{
|
||||||
boolean r;
|
boolean r;
|
||||||
|
|
||||||
r = ntfs_leave_file_security(ntfs_context);
|
r = ntfs_leave_file_security(ntfs_context) ? AGREED : DENIED;
|
||||||
if (r)
|
if (r)
|
||||||
fprintf(stderr,"\"%s\" closed\n",volume);
|
fprintf(stderr,"\"%s\" closed\n",volume);
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user