]> git.proxmox.com Git - mirror_qemu.git/blobdiff - hw/smc91c111.c
find -type f | xargs sed -i 's/[\t ]*$//g' # Yes, again. Note the star in the regex.
[mirror_qemu.git] / hw / smc91c111.c
index a6a11e0f2f5d0a71614d69cd10784b9e3d8429fd..b8d0cba5f2385c8d33d9be84a0826865ca12d7d4 100644 (file)
@@ -649,7 +649,7 @@ static void smc91c111_receive(void *opaque, const uint8_t *buf, int size)
     /* Pad short packets.  */
     if (size < 64) {
         int pad;
-       
+
         if (size & 1)
             *(p++) = buf[size - 1];
         pad = 64 - size;