Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b8b5cd9f authored by Ian Abbott's avatar Ian Abbott Committed by Greg Kroah-Hartman
Browse files

Staging: comedi: Corrected type of a printk argument in resize_async_buffer().

parent a8ba8bff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2337,7 +2337,7 @@ static int resize_async_buffer(struct comedi_device *dev,
	}

	DPRINTK("comedi%i subd %d buffer resized to %i bytes\n",
		dev->minor, s - dev->subdevices, async->prealloc_bufsz);
		dev->minor, (int)(s - dev->subdevices), async->prealloc_bufsz);
	return 0;
}