before starting pa2

This commit is contained in:
zzy
2024-09-01 16:54:35 +08:00
parent 308871e68e
commit 4316303d8e

View File

@ -77,7 +77,7 @@ static WP* del_wp(WP** head, WP* pos) {
void show_wp() {
printf("No. Expr\n");
for (WP* tmp = head; tmp != NULL; tmp = tmp->next) {
printf("%3d: %12s = "FMT_WORD"\n", tmp->NO, tmp->expr, tmp->val);
printf("%3d: %12s -> "FMT_WORD"\n", tmp->NO, tmp->expr, tmp->val);
tmp->hit = false;
}
}