diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-03-30 01:17:20 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-03-30 01:17:20 +0000 |
commit | 78a0b752367a784fae6610670163eb97ea00ddf5 (patch) | |
tree | 664f6476b63659cbf8d53eab53334e2cab24cc73 /sys/dev | |
parent | 25ea10ee960af7af620c11c11ea49e6451caf367 (diff) |
Zap a superfluous newline in the drmprint function, it messes up output
if you disable the device.
noticed by deraadt@.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/drm/drm_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/drm_drv.c b/sys/dev/pci/drm/drm_drv.c index 9b075fe0cf3..6405ad2b54f 100644 --- a/sys/dev/pci/drm/drm_drv.c +++ b/sys/dev/pci/drm/drm_drv.c @@ -98,7 +98,7 @@ int drmprint(void *aux, const char *pnp) { if (pnp != NULL) - printf("drm at %s\n", pnp); + printf("drm at %s", pnp); return (UNCONF); } |