This is an automated email from Gerrit.

Antonio Borneo ([email protected]) just uploaded a new patch set to 
Gerrit, which you can find at http://openocd.zylin.com/5009

-- gerrit

commit ee1af09206c07134ce080190fae2d8d0e92d8463
Author: Antonio Borneo <[email protected]>
Date:   Fri Jan 4 10:53:49 2019 +0100

    log: add const qualifier to commands struct
    
    The struct log_command_handlers[] is never modified.
    Add const qualifier to it.
    
    Change-Id: I5785aeb09ae9c23eaf7c34a05b88d0c7285f2d78
    Signed-off-by: Antonio Borneo <[email protected]>

diff --git a/src/helper/log.c b/src/helper/log.c
index f980774..90653c4 100644
--- a/src/helper/log.c
+++ b/src/helper/log.c
@@ -236,7 +236,7 @@ COMMAND_HANDLER(handle_log_output_command)
        return ERROR_OK;
 }
 
-static struct command_registration log_command_handlers[] = {
+static const struct command_registration log_command_handlers[] = {
        {
                .name = "log_output",
                .handler = handle_log_output_command,

-- 


_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to