Fix recently introduced problem with build of ADC driver with analog debug enabled.

This commit is contained in:
Manuel Stühn 2016-05-29 13:45:40 -06:00 committed by Gregory Nutt
parent 815bea77ea
commit 5c6c7bd60d
1 changed files with 1 additions and 1 deletions

View File

@ -432,7 +432,7 @@ int adc_register(FAR const char *path, FAR struct adc_dev_s *dev)
ret = dev->ad_ops->ao_bind(dev, &g_adc_callback);
if (ret < 0)
{
adbg("ERROR: Failed to bind callbacks: %d\n", ret)
adbg("ERROR: Failed to bind callbacks: %d\n", ret);
return ret;
}