diff options
| author | zy <[email protected]> | 2023-12-06 03:36:17 -0500 |
|---|---|---|
| committer | zy <[email protected]> | 2023-12-06 03:36:17 -0500 |
| commit | 73ac7f86ad5020da99b0f7d8ff564fa506971834 (patch) | |
| tree | 56164b4d133bda1bb9cc749db22047071e296762 | |
| parent | d131daad164de74c07dbf337877f4a47dcb04cc8 (diff) | |
ucli: fix Timestamp
| -rw-r--r-- | source/ucli/ucli.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/ucli/ucli.cc b/source/ucli/ucli.cc index d3b9eb4..64fff5d 100644 --- a/source/ucli/ucli.cc +++ b/source/ucli/ucli.cc @@ -104,7 +104,7 @@ static int task_info_extract(void *buf, unsigned int len, void *) { break; vm_record = (variable_monitor_record *)buf; - printf("threshold exceeded, Timestamp %d :\n", vm_record->tv); + printf("threshold exceeded, Timestamp %lld :\n", vm_record->tv); for (int i = 0; i < vm_record->threshold_num; i++) { printf("\t: pid: %d, name: %s, ptr: %p, threshold:%d, true_value:%d\n", |
