This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 6c3ca23db system/debugpoint: Fix RO watchpoint test issue for esp 
devices
6c3ca23db is described below

commit 6c3ca23dbf06fea9d3d1c91d40c48e4bb06c16dd
Author: Eren Terzioglu <[email protected]>
AuthorDate: Wed Oct 30 13:44:19 2024 +0100

    system/debugpoint: Fix RO watchpoint test issue for esp devices
---
 system/debugpoint/debug.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system/debugpoint/debug.c b/system/debugpoint/debug.c
index 06341ad78..b4f951ec4 100644
--- a/system/debugpoint/debug.c
+++ b/system/debugpoint/debug.c
@@ -38,7 +38,7 @@
  ****************************************************************************/
 
 static uint8_t g_test_data[8];
-static const char g_test_rodata[] = "This is a read-only string";
+static const char g_test_rodata[32] = "This is a read-only string";
 
 /****************************************************************************
  * Name: debug_option

Reply via email to