[MMIXER] Fix additional data size initialization for different audio formats (#6753)
[reactos.git] / drivers / network / dd / ne2000 / ne2000 / main.c
index 09cf473..5f707e5 100644 (file)
@@ -7,6 +7,7 @@
  * REVISIONS:
  *   CSH 27/08-2000 Created
  */
+
 #include <ne2000.h>
 
 NTSTATUS
@@ -795,7 +796,7 @@ static NDIS_STATUS NTAPI MiniportSetInformation(
             Adapter->LookaheadSize = GenericULONG;
         break;
     case OID_802_3_MULTICAST_LIST:
-        /* Verify length. Must be multiplum of hardware address length */
+        /* Verify length. Must be multiple of hardware address length */
         if ((InformationBufferLength % DRIVER_LENGTH_OF_ADDRESS) != 0) {
             *BytesRead   = 0;
             *BytesNeeded = 0;
@@ -1055,4 +1056,5 @@ DriverEntry(
         }
 
 #endif
+
 /* EOF */