citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit fbb34b8d3390031322239650b28f9ee3f6788860
parent 62b79a2364eeabb9129fbddc0f0acca272000fd4
Author: Kyle Milz <kyle@0x30.net>
Date:   Sun, 26 Jun 2016 09:08:09 -0600

lib: tweak struct citrun_node

Diffstat:
Mlib/runtime.h | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/runtime.h b/lib/runtime.h @@ -1,10 +1,10 @@ #include <stdint.h> struct citrun_node { - uint64_t *lines_ptr; - uint32_t size; - uint32_t inst_sites; - const char *file_name; - struct citrun_node *next; + uint64_t *lines_ptr; + uint32_t size; + uint32_t inst_sites; + const char *file_name; + struct citrun_node *next; }; void citrun_node_add(struct citrun_node *); void citrun_start();