]> granicus.if.org Git - php/commitdiff
removed warning; WS
authorBob Weinand <bobwei9@hotmail.com>
Sun, 16 Feb 2014 16:41:50 +0000 (17:41 +0100)
committerBob Weinand <bobwei9@hotmail.com>
Sun, 16 Feb 2014 16:41:50 +0000 (17:41 +0100)
phpdbg_bp.c
phpdbg_help.c
phpdbg_utils.c

index 1e85f039a51c4388e5ef4fa088b7f31446c93208..609644548fa816e8f7d5720205b909a85f2c9b42 100644 (file)
@@ -992,7 +992,7 @@ static inline phpdbg_breakbase_t *phpdbg_find_conditional_breakpoint(zend_execut
 
        for (zend_hash_internal_pointer_reset_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], &position);
             zend_hash_get_current_data_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], (void*)&bp, &position) == SUCCESS;
-               zend_hash_move_forward_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], &position)) {
+            zend_hash_move_forward_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], &position)) {
                zval *retval = NULL;
                int orig_interactive = CG(interactive);
                zval **orig_retval = EG(return_value_ptr_ptr);
index a085b2aa3dd1abd7019b7a1c06d02581acfd05c6..3aa82848e00993178b5341dd2bdfb2124ceb11c8 100644 (file)
@@ -63,13 +63,13 @@ void pretty_print(char *text TSRMLS_DC)
 
        /* First pass calculates a safe size for the pretty print version */
        for (p = text; *p; p++) {
-               if ( UNEXPECTED(p[0] == '*') && p[1] == '*' ) {
+               if (UNEXPECTED(p[0] == '*') && p[1] == '*') {
                        size += bold_escape_len - 2;
                        p++;
-               } else if ( UNEXPECTED(p[0] == '$') && p[1] == 'P' ) {
+               } else if (UNEXPECTED(p[0] == '$') && p[1] == 'P') {
                        size += prompt_escape_len - 2;
                        p++;
-               } else if ( UNEXPECTED(p[0] == '\\') ) {
+               } else if (UNEXPECTED(p[0] == '\\')) {
                        p++;
                }
        }
@@ -87,16 +87,16 @@ void pretty_print(char *text TSRMLS_DC)
         * first blank.
         */
        for (p = text, q = new; *p; p++) {
-               if ( UNEXPECTED(*p == ' ') ) {
+               if (UNEXPECTED(*p == ' ')) {
                        last_new_blank = q;
                        last_blank_count = line_count++;
                        *q++ = ' ';
-               } else if ( UNEXPECTED(*p == '\n') ) {
+               } else if (UNEXPECTED(*p == '\n')) {
                        last_new_blank = NULL;
                        *q++ = *p;
                        last_blank_count = 0;
                        line_count = 0;
-               } else if ( UNEXPECTED(p[0] == '*') && p[1] == '*' ) {
+               } else if (UNEXPECTED(p[0] == '*') && p[1] == '*') {
                        if (bold_escape_len) {
                                in_bold = !in_bold;
                                memcpy (q, in_bold ? bold_on_escape : bold_off_escape, bold_escape_len);
@@ -104,12 +104,12 @@ void pretty_print(char *text TSRMLS_DC)
                                /* bold on/off has zero print width so line count is unchanged */
                        }
                        p++;
-               } else if ( UNEXPECTED(p[0] == '$') && p[1] == 'P' ) {
+               } else if (UNEXPECTED(p[0] == '$') && p[1] == 'P') {
                        memcpy (q, prompt_escape, prompt_escape_len);
                        q += prompt_escape_len;
                        line_count += prompt_len;
                        p++;
-               } else if ( UNEXPECTED(p[0] == '\\') ) {
+               } else if (UNEXPECTED(p[0] == '\\')) {
                        p++;
                        *q++ = *p;
                        line_count++;
@@ -131,7 +131,7 @@ void pretty_print(char *text TSRMLS_DC)
                phpdbg_error("Output overrun of %lu bytes", ((q-new) - size));
        }
 
-       (void) phpdbg_write("%s\n", new);
+       phpdbg_write("%s\n", new);
        efree(new);
 }  /* }}} */
 
@@ -139,8 +139,7 @@ void pretty_print(char *text TSRMLS_DC)
 void summary_print(phpdbg_command_t const * const cmd TSRMLS_DC)
 {
        char *summary;
-       spprintf(&summary, 0, "Command: **%s**  Alias: **%c**  **%s**\n",
-                cmd->name, cmd->alias, cmd->tip);
+       spprintf(&summary, 0, "Command: **%s**  Alias: **%c**  **%s**\n", cmd->name, cmd->alias, cmd->tip);
        pretty_print(summary TSRMLS_CC);
        efree(summary);
 }
@@ -172,10 +171,10 @@ static char *get_help(const char * const key TSRMLS_DC)
  * will be used to generate a help message but non-unique one will be used to list alternatives.
  */
 static int get_command(
-                       const char *key, size_t len,            /* pointer and length of key */
-                       phpdbg_command_t const **command,       /* address of first matching command  */
-                   phpdbg_command_t const * const commands /* command table to be scanned */
-                       TSRMLS_DC)
+       const char *key, size_t len,      /* pointer and length of key */
+       phpdbg_command_t const **command, /* address of first matching command  */
+       phpdbg_command_t const * commands /* command table to be scanned */
+       TSRMLS_DC)
 {
        const phpdbg_command_t *c;
        unsigned int num_matches = 0;
@@ -270,7 +269,7 @@ PHPDBG_HELP(aliases) /* {{{ */
                                for(c_sub = c->subs; c_sub->alias; c_sub++) {
                                        if (c_sub->alias) {
                                                phpdbg_writeln(" %c %c   %s %-*s  %s",
-                                                       c->alias, c_sub->alias, c->name, len, c_sub->name, c_sub->tip);
+                                                       c->alias, c_sub->alias, (char *)c->name, len, c_sub->name, c_sub->tip);
                                        }
                                }
                        }
@@ -278,10 +277,7 @@ PHPDBG_HELP(aliases) /* {{{ */
        }
 
        /* Print out aliases for help as this one comes last, with the added text on how aliases are used */
-       (void) get_command( "h", 1, &   c, phpdbg_prompt_commands TSRMLS_CC);
-/* In function ‘phpdbg_do_help_aliases’:
-274:2: warning: passing argument 3 of ‘get_command’ from incompatible pointer type [enabled by default]
-180:12: note: expected ‘struct phpdbg_command_t **’ but argument is of type ‘const struct phpdbg_command_t **’ */
+       get_command("h", 1, &c, phpdbg_prompt_commands TSRMLS_CC);
        phpdbg_writeln(" %c     %-20s  %s\n", c->alias, c->name, c->tip);
 
        len = 20 - 1 - c->name_len;
index 4bb671247ed91e35224981614e922dc4bd1e708f..d64d9ad6860a8e1eda0448da537dd3d2cbbfbf18 100644 (file)
@@ -31,7 +31,7 @@
 #ifdef _WIN32
 #      include "win32/time.h"
 #elif defined(HAVE_SYS_IOCTL_H) 
-#   include "sys/ioctl.h"
+#      include "sys/ioctl.h"
 #endif
 
 ZEND_EXTERN_MODULE_GLOBALS(phpdbg);
@@ -391,7 +391,7 @@ PHPDBG_API const char *phpdbg_get_prompt(TSRMLS_D) /* {{{ */
 PHPDBG_API int phpdbg_get_terminal_width(TSRMLS_D) /* {{{ */
 {
        int columns;    
-#ifdef _win32
+#ifdef _WIN32
        CONSOLE_SCREEN_BUFFER_INFO csbi;
 
        GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi);