aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gubler <thomasgubler@gmail.com>2014-12-02 12:17:34 +0100
committerThomas Gubler <thomasgubler@gmail.com>2014-12-02 12:17:34 +0100
commit141dda209222a7dd5afad6b844735fd9a44756a6 (patch)
treec7fe30dae7ab4e3ee215eb0ca3837ca8749cb8f8
parenteba62a75a445bf1f6302af7ea0cb24b458d65d25 (diff)
downloadpx4-firmware-141dda209222a7dd5afad6b844735fd9a44756a6.tar.gz
px4-firmware-141dda209222a7dd5afad6b844735fd9a44756a6.tar.bz2
px4-firmware-141dda209222a7dd5afad6b844735fd9a44756a6.zip
fix uorb header template for constants
-rw-r--r--msg/templates/msg.h.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/msg/templates/msg.h.template b/msg/templates/msg.h.template
index f60001b55..5fce506b6 100644
--- a/msg/templates/msg.h.template
+++ b/msg/templates/msg.h.template
@@ -82,7 +82,7 @@ for field in spec.parsed_fields():
}@
@# Constants
@[for constant in spec.constants]@
-#define @(constant.name) = @(int(constant.val))
+#define @(constant.name) @(int(constant.val))
@[end for]
/**