aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/led/led.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/led/led.cpp')
-rw-r--r--src/drivers/led/led.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/led/led.cpp b/src/drivers/led/led.cpp
index 04b565358..fe307223f 100644
--- a/src/drivers/led/led.cpp
+++ b/src/drivers/led/led.cpp
@@ -1,6 +1,6 @@
/****************************************************************************
*
- * Copyright (C) 2012 PX4 Development Team. All rights reserved.
+ * Copyright (c) 2013 PX4 Development Team. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -110,11 +110,11 @@ LED *gLED;
}
void
-drv_led_start()
+drv_led_start(void)
{
if (gLED == nullptr) {
gLED = new LED;
if (gLED != nullptr)
gLED->init();
}
-} \ No newline at end of file
+}