Fix quotation marks

This commit is contained in:
Lorenz Meier
2014-02-12 08:50:44 +01:00
parent 85ec7fb40a
commit 3bcf34098a
+1 -1
View File
@@ -117,7 +117,7 @@ sbus_init(const char *device)
ENABLE_SBUS_OUT(true);
while (1) {
const char* hello = 'HELLO WORLD';
const char* hello = "HELLO WORLD";
if (write(sbus_fd, hello, strlen(hello)) != strlen(hello))
break;
}