mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
More const-correctness fixes
This continues one of the const-correctness fixes from the previous commit (it needed some more transitive fixes), and reverts another of them, since it was over-zealous. This fixes CI failure: https://gitlab.gnome.org/GNOME/glib/-/jobs/27125. Signed-off-by: Philip Withnall <withnall@endlessm.com> Reviewed-by: nobody
This commit is contained in:
parent
22cd18500d
commit
9365e212f8
@ -153,7 +153,7 @@ typedef struct
|
||||
gint monitor_created;
|
||||
gint monitor_deleted;
|
||||
gint monitor_changed;
|
||||
const gchar *monitor_path;
|
||||
gchar *monitor_path;
|
||||
gint pos;
|
||||
const gchar *data;
|
||||
gchar *buffer;
|
||||
|
@ -81,7 +81,7 @@
|
||||
|
||||
|
||||
#ifndef G_OS_WIN32
|
||||
static void stack_trace (char **args);
|
||||
static void stack_trace (const char * const *args);
|
||||
#endif
|
||||
|
||||
/* People want to hit this from their debugger... */
|
||||
@ -269,7 +269,7 @@ stack_trace_sigchld (int signum)
|
||||
}
|
||||
|
||||
static void
|
||||
stack_trace (char **args)
|
||||
stack_trace (const char * const *args)
|
||||
{
|
||||
pid_t pid;
|
||||
int in_fd[2];
|
||||
@ -301,7 +301,7 @@ stack_trace (char **args)
|
||||
close (1); dup (out_fd[1]); /* set the stdout to the out pipe */
|
||||
close (2); dup (out_fd[1]); /* set the stderr to the out pipe */
|
||||
|
||||
execvp (args[0], args); /* exec gdb */
|
||||
execvp (args[0], (char **) args); /* exec gdb */
|
||||
|
||||
/* Print failure to original stderr */
|
||||
close (2); dup (old_err);
|
||||
|
Loading…
Reference in New Issue
Block a user