Changeset 6 in Main for trunk/Common/log.c


Ignore:
Timestamp:
Sep 13, 2024, 7:28:20 PM (2 months ago)
Author:
Nishi
Message:

vhost

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/log.c

    r3 r6  
    4040                                result = cm_strcat(tmp, va_arg(args, char*));
    4141                                free(tmp);
     42                        } else if(log[i] == 'd') {
     43                                int a = va_arg(args, int);
     44                                char buf[128];
     45                                sprintf(buf, "%d", a);
     46                                char* tmp = result;
     47                                result = cm_strcat(tmp, buf);
     48                                free(tmp);
    4249                        }
    4350                } else {
Note: See TracChangeset for help on using the changeset viewer.