Commit 0c2fbbe7 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

mountmgr.sys: Remove variable result which is not really used from update_symlink.

parent c45c226d
......@@ -175,7 +175,6 @@ static void update_symlink( const char *path, const char *dest, const char *orig
/* send notification about a change to a given drive */
static void send_notify( int drive, int code )
{
DWORD_PTR result;
DEV_BROADCAST_VOLUME info;
info.dbcv_size = sizeof(info);
......@@ -183,8 +182,8 @@ static void send_notify( int drive, int code )
info.dbcv_reserved = 0;
info.dbcv_unitmask = 1 << drive;
info.dbcv_flags = DBTF_MEDIA;
result = BroadcastSystemMessageW( BSF_FORCEIFHUNG|BSF_QUERY, NULL,
WM_DEVICECHANGE, code, (LPARAM)&info );
BroadcastSystemMessageW( BSF_FORCEIFHUNG|BSF_QUERY, NULL,
WM_DEVICECHANGE, code, (LPARAM)&info );
}
/* create the disk device for a given volume */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment