X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Frandom.c;h=f4fab4c8c07e72f9ea983796ad22d8a5aefb0deb;hb=4fbcabe10406118bb1856772cd7fbfb2a193869b;hp=c7a3edf7468edd9fd17a759cd59ee50edfba9ff5;hpb=f730dded18218f869c3c316b98912ff19d8fb71c;p=sliver-openvswitch.git diff --git a/lib/random.c b/lib/random.c index c7a3edf74..f4fab4c8c 100644 --- a/lib/random.c +++ b/lib/random.c @@ -48,7 +48,7 @@ random_init(void) struct timeval tv; inited = true; if (gettimeofday(&tv, NULL) < 0) { - fatal(errno, "gettimeofday"); + ofp_fatal(errno, "gettimeofday"); } srand(tv.tv_sec ^ tv.tv_usec); }