On Fri, 18 Dec 2020, Daniel Wagner wrote: > As we have our small error message helpers use them. > > Signed-off-by: Daniel Wagner <dwagner@xxxxxxx> > --- > src/lib/rt-numa.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/src/lib/rt-numa.c b/src/lib/rt-numa.c > index fc7adb4d467a..3a8441d5151c 100644 > --- a/src/lib/rt-numa.c > +++ b/src/lib/rt-numa.c > @@ -40,7 +40,7 @@ static int cpu_for_thread_sp(int thread_num, int max_cpus, struct bitmask *cpuma > cpu++; > } > } > - fprintf(stderr, "Bug in cpu mask handling code.\n"); > + warn("Bug in cpu mask handling code.\n"); > return 0; > } > > @@ -68,7 +68,7 @@ static int cpu_for_thread_ua(int thread_num, int max_cpus) > } > } > > - fprintf(stderr, "Bug in cpu mask handling code.\n"); > + warn("Bug in cpu mask handling code.\n"); > return 0; > } > > -- > 2.29.2 > > Signed-off-by: John Kacur <jkacur@xxxxxxxxxx>