Skip to content

Commit c21ddc2

Browse files
committed
update todo
1 parent 95eeeb3 commit c21ddc2

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

TODO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
* general
22
** X ply script license, option to ply (can go in hashbang)
33
** X sigint handling
4-
** pspec wildcards
4+
** X pspec wildcards
55
** kallsyms resolve
66

77
* printf
88
** X width
9-
** overrun
9+
** X overrun
1010

1111
* map
1212
** X dump

src/ply.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,14 @@ int main(int argc, char **argv)
153153
goto err;
154154
}
155155

156-
_d("enabling %d probe(s)", num);
157156
fputs("1\n", enable);
158157
fflush(enable);
159158
rewind(enable);
160159

161-
_i("%d probe%s active", num, (num == 1) ? "" : "s");
160+
fprintf(stderr, "%d probe%s active\n", num, (num == 1) ? "" : "s");
162161
printf_drain(script);
163162

164-
_i("de-activating probes");
163+
fprintf(stderr, "de-activating probes");
165164
fputs("0\n", enable);
166165
fflush(enable);
167166
fclose(enable);

0 commit comments

Comments
 (0)