summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/ChangeLog.txt4
-rw-r--r--apps/examples/composite/composite_main.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index f6f73dfc4..5d5998a5f 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -617,3 +617,7 @@
differ. Contributed by Andrew Tridgell (via Lorenz Meier) (2013-7-18).
6.30 2013-xx-xx Gregory Nutt <gnutt@nuttx.org>
+
+ * apps/examples/composite/: SourceForge bug #19: Fix a typo that can
+ cause a configuration error. From CCTSAO (2013-9-4).
+
diff --git a/apps/examples/composite/composite_main.c b/apps/examples/composite/composite_main.c
index 9ce30cc44..e1d8db675 100644
--- a/apps/examples/composite/composite_main.c
+++ b/apps/examples/composite/composite_main.c
@@ -838,7 +838,7 @@ int disconn_main(int argc, char *argv[])
/* Then disconnect the device and uninitialize the USB mass storage driver */
composite_uninitialize(g_composite.cmphandle);
- g_composite.mshandle = NULL;
+ g_composite.mschandle = NULL;
message("disconn_main: Disconnected\n");
check_test_memory_usage("After composite_uninitialize()");