Explorar el Código

[examples] fixed bug when device not found

liang yongxiang hace 6 años
padre
commit
2c7fcf7d83
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/test/device_test.c

+ 1 - 1
examples/test/device_test.c

@@ -480,7 +480,7 @@ int device_test(const char * device_name)
     device = rt_device_find(device_name);
     if( device == RT_NULL)
     {
-        rt_kprintf("device %s: not found!\r\n");
+        rt_kprintf("device %s: not found!\r\n", device_name);
         return RT_ERROR;
     }