summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-03-20 10:01:28 -0700
committerGitHub <noreply@github.com>2018-03-20 10:01:28 -0700
commit286e342a9a57ff996497b911f11fee4e3466cdfa (patch)
treedc5815a9cfff66f0b21e049311f513baf3ef43f8
parent0f90f3560632c734f18a46c9ecddb6c8f60ba41b (diff)
parent002797a3b43d19fc4e289608038867312165b09d (diff)
Merge pull request #686 from jepler/lto-type-diagnostic
Fix array vs pointer error in declaration of circuitpython_help_text
-rw-r--r--shared-bindings/help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/help.c b/shared-bindings/help.c
index cdd9a4a93..d8ffc13dd 100644
--- a/shared-bindings/help.c
+++ b/shared-bindings/help.c
@@ -35,7 +35,7 @@
//| prints general port information.
//|
-const char *circuitpython_help_text =
+const char circuitpython_help_text[] =
"Welcome to Adafruit CircuitPython " MICROPY_GIT_TAG "!\r\n"
"\r\n"
"Please visit learn.adafruit.com/category/circuitpython for project guides.\r\n"