Rearrange comment to make clang-format happy

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2019-07-31 15:26:29 +00:00
parent a2d46f3c00
commit 9e9f1ac9b3

View File

@ -936,14 +936,14 @@ TunInitializeEx(
NdisMGetDeviceProperty(MiniportAdapterHandle, NULL, &Ctx->FunctionalDeviceObject, NULL, NULL, NULL); NdisMGetDeviceProperty(MiniportAdapterHandle, NULL, &Ctx->FunctionalDeviceObject, NULL, NULL, NULL);
if (Status = NDIS_STATUS_FAILURE, !Ctx->FunctionalDeviceObject) if (Status = NDIS_STATUS_FAILURE, !Ctx->FunctionalDeviceObject)
goto cleanupFreeCtx; goto cleanupFreeCtx;
#pragma warning(suppress : 28175)
ASSERT(!Ctx->FunctionalDeviceObject->Reserved);
/* Reverse engineering indicates that we'd be better off calling /* Reverse engineering indicates that we'd be better off calling
* NdisWdfGetAdapterContextFromAdapterHandle(functional_device), * NdisWdfGetAdapterContextFromAdapterHandle(functional_device),
* which points to our TUN_CTX object directly, but this isn't * which points to our TUN_CTX object directly, but this isn't
* available before Windows 10, so for now we just stick it into * available before Windows 10, so for now we just stick it into
* this reserved field. Revisit this when we drop support for old * this reserved field. Revisit this when we drop support for old
* Windows versions. */ * Windows versions. */
#pragma warning(suppress : 28175)
ASSERT(!Ctx->FunctionalDeviceObject->Reserved);
#pragma warning(suppress : 28175) #pragma warning(suppress : 28175)
Ctx->FunctionalDeviceObject->Reserved = Ctx; Ctx->FunctionalDeviceObject->Reserved = Ctx;