diff --git a/src/pv/elapsedtime.c b/src/pv/elapsedtime.c index ab360b7..2c8878a 100644 --- a/src/pv/elapsedtime.c +++ b/src/pv/elapsedtime.c @@ -25,6 +25,7 @@ */ void pv_elapsedtime_read(struct timespec *return_time) { + /* TODO: use pv_error() rather than fprintf(). */ /*@-unrecog@ *//* splint doesn't know clock_gettime. */ if (0 != clock_gettime(CLOCK_MONOTONIC, return_time)) { fprintf(stderr, "%s: %s: %s\n", PACKAGE_NAME, "clock_gettime", strerror(errno)); diff --git a/src/pv/remote.c b/src/pv/remote.c index 3a142f2..325ab14 100644 --- a/src/pv/remote.c +++ b/src/pv/remote.c @@ -668,6 +668,7 @@ int pv_remote_transferstate_fetch( /*@unused@ */ __attribute__((unused)) bool silent) { + /* TODO: use pv_error() rather than fprintf(). */ /*@-mustfreefresh@ *//* splint - see above */ fprintf(stderr, "%s\n", _("SA_SIGINFO not supported on this system")); /*@+mustfreefresh@ */