Commit d802aeb3 authored by Adam Matoušek's avatar Adam Matoušek
Browse files

gib: Fix invalid call to 'error' in findsrc.

parent ba076c12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -105,7 +105,7 @@ void dump( state_t s )
int main( int argc, const char *argv[] )
{
    if ( argc != 3 )
        error( "usage: %s <rootdir> <outfile>", argv[ 0 ] );
        error( NULL, "usage: %s <rootdir> <outfile>", argv[ 0 ] );

    writer_t out, dep;