]> Nishi Git Mirror - dataworks.git/commitdiff
better debug
authornishi <nishi@d4a5a174-5a4a-5b4b-b672-37683c10d7d5>
Thu, 23 May 2024 10:29:00 +0000 (10:29 +0000)
committernishi <nishi@d4a5a174-5a4a-5b4b-b672-37683c10d7d5>
Thu, 23 May 2024 10:29:00 +0000 (10:29 +0000)
git-svn-id: file:///raid/svn-main/nishi-dataworks/trunk@90 d4a5a174-5a4a-5b4b-b672-37683c10d7d5

Client/main.c

index 0e003b7d0e2a7e216164c22266409d2046015ae6..ec56b778324a250f9d10a3fa25c4531b38c6ce78 100644 (file)
@@ -54,7 +54,7 @@ void padleft(int leftpad, const char* str) {
 void print_recursive(struct __dw_token* token, int depth) {
        int i;
        for(i = 0; i < depth; i++) printf("  ");
-       printf("%d:%s\n", token->type, token->name == NULL ? "(null)" : token->name);
+       printf("%d:[%s]\n", token->type, token->name == NULL ? "(null)" : token->name);
        if(token->token != NULL) {
                for(i = 0; token->token[i] != NULL; i++) print_recursive(token->token[i], depth + 1);
        }