From 00105e68f63d38d14b28941939c8f5f2fc64f01b Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 10 Oct 2018 22:35:30 +0200 Subject: [PATCH] Fixed a compile-breaking mistake in device.c. --- src/device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/device.c b/src/device.c index 663a6a331..32ca8075a 100644 --- a/src/device.c +++ b/src/device.c @@ -9,7 +9,7 @@ * Implementation of the generic device interface to handle * all devices attached to the emulator. * - * Version: @(#)device.c 1.0.18 2018/10/10 + * Version: @(#)device.c 1.0.19 2018/10/10 * * Authors: Fred N. van Kempen, * Miran Grca, @@ -220,7 +220,7 @@ device_close_all(void) for (c = (DEVICE_MAX - 1); c >= 0; c--) { if (devices[c] != NULL) { if (devices[c]->name) - devicelog("Closing device: \"%s\"...\n", devices[c]->name); + device_log("Closing device: \"%s\"...\n", devices[c]->name); if (devices[c]->close != NULL) devices[c]->close(device_priv[c]); devices[c] = device_priv[c] = NULL;