kicad manager: disable a printf used for debug.

This commit is contained in:
jean-pierre charras 2023-10-28 17:00:34 +02:00
parent 14d6ff8946
commit 7628879190
1 changed files with 3 additions and 1 deletions

View File

@ -355,7 +355,9 @@ static git_repository* get_git_repository_for_file( const char* filename )
// Find the repository path for the given file
if( git_repository_discover( &repo_path, filename, 0, NULL ) )
{
printf( "Error %s\n", git_error_last()->message );
#if 0
printf( "get_git_repository_for_file: %s\n", git_error_last()->message ); fflush( 0 );
#endif
return nullptr;
}