From 7f847d71f39c692b3205774ccccc5aebada5fd0c Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Mon, 12 Feb 2018 18:07:53 +0100 Subject: [PATCH] platform/tests: (trivial) fix a typo --- src/platform/tests/test-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/tests/test-common.c b/src/platform/tests/test-common.c index 02c1bede01..40cce96f9d 100644 --- a/src/platform/tests/test-common.c +++ b/src/platform/tests/test-common.c @@ -1964,7 +1964,7 @@ main (int argc, char **argv) /* Create the writable /sys/devices tree. */ if (mount ("sys", "/sys/kernel/debug", "sysfs", 0, NULL) != 0) { errsv = errno; - g_error ("mount(\"/sys/devices/k\") failed with %s (%d)", strerror (errsv), errsv); + g_error ("mount(\"/sys/kernel/debug\") failed with %s (%d)", strerror (errsv), errsv); } /* Bind mound the writable device tree to the read-only sysfs. */