examples/chrono: Fix error: 'CONFIG_EXAMPLES_SLCD_DEVNAME' undeclared

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
Change-Id: I04c09878ec55cbf910159ab84e0b402cc94dad9b
This commit is contained in:
Xiang Xiao 2020-11-24 16:21:59 +08:00 committed by David Sidrane
parent 99633aba70
commit 54d5def4d5

View File

@ -334,7 +334,7 @@ int main(int argc, FAR char *argv[])
fd = open(SLCD_DEVNAME, O_RDWR); fd = open(SLCD_DEVNAME, O_RDWR);
if (fd < 0) if (fd < 0)
{ {
printf("Failed to open %s: %d\n", CONFIG_EXAMPLES_SLCD_DEVNAME, errno); printf("Failed to open %s: %d\n", SLCD_DEVNAME, errno);
goto errout; goto errout;
} }