You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2020/05/29 09:07:18 UTC

svn commit: r1878265 - /httpd/httpd/trunk/.gdbinit

Author: ylavic
Date: Fri May 29 09:07:18 2020
New Revision: 1878265

URL: http://svn.apache.org/viewvc?rev=1878265&view=rev
Log:
.gdbinit: fix dump_table indentation [skip ci]

Modified:
    httpd/httpd/trunk/.gdbinit

Modified: httpd/httpd/trunk/.gdbinit
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/.gdbinit?rev=1878265&r1=1878264&r2=1878265&view=diff
==============================================================================
--- httpd/httpd/trunk/.gdbinit (original)
+++ httpd/httpd/trunk/.gdbinit Fri May 29 09:07:18 2020
@@ -6,12 +6,12 @@ define dump_table
     set $n = ((apr_array_header_t *)$arg0)->nelts
     set $i = 0
     while $i < $n
-    if $t[$i].val == (void *)0L
-        printf "[%u] '%s'=>NULL\n", $i, $t[$i].key
-    else
-        printf "[%u] '%s'='%s' [%p]\n", $i, $t[$i].key, $t[$i].val, $t[$i].val
-    end
-    set $i = $i + 1
+        if $t[$i].val == (void *)0L
+            printf "[%u] '%s'=>NULL\n", $i, $t[$i].key
+        else
+            printf "[%u] '%s'='%s' [%p]\n", $i, $t[$i].key, $t[$i].val, $t[$i].val
+        end
+        set $i = $i + 1
     end
 end
 document dump_table