[geany/geany-plugins] 097f70: debugger: Fix a typo, `const` keyword repeated twice
Colomban Wendling
git-noreply at xxxxx
Fri Jun 8 16:37:19 UTC 2012
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Fri, 08 Jun 2012 16:37:19
Commit: 097f70d1b50d21b3470337b7c7fa73ac8f2cc8de
https://github.com/geany/geany-plugins/commit/097f70d1b50d21b3470337b7c7fa73ac8f2cc8de
Log Message:
-----------
debugger: Fix a typo, `const` keyword repeated twice
Modified Paths:
--------------
debugger/src/breakpoints.c
debugger/src/breakpoints.h
Modified: debugger/src/breakpoints.c
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -470,7 +470,7 @@ void breaks_remove_all(void)
* file - list of breakpoints
* enabled - anble or disable breakpoints
*/
-void breaks_set_enabled_for_file(const const char *file, gboolean enabled)
+void breaks_set_enabled_for_file(const char *file, gboolean enabled)
{
/* do not process async break manipulation on modules
that do not support async interuppt */
Modified: debugger/src/breakpoints.h
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -39,7 +39,7 @@
void breaks_switch(const char *file, int line);
void breaks_set_hits_count(const char *file, int line, int count);
void breaks_set_condition(const char *file, int line, const char* condition);
-void breaks_set_enabled_for_file(const const char *file, gboolean enabled);
+void breaks_set_enabled_for_file(const char *file, gboolean enabled);
void breaks_move_to_line(const char* file, int line_from, int line_to);
break_state breaks_get_state(const char* file, int line);
GList* breaks_get_for_document(const char* file);
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
More information about the Plugins-Commits
mailing list