Skip to content

Commit

Permalink
only complain if ext is unusable if there is any defined
Browse files Browse the repository at this point in the history
  • Loading branch information
boeckmann committed Jan 18, 2025
1 parent 1472a63 commit 18bd576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/fdisk/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ void Display_CL_Partition_Table( void )
/* NLS:Largest continious free space for primary partition */
con_printf( svarlang_str( 9, 5 ), Max_Pri_Free_Space_In_MB() );

if ( !pDrive->ext_usable ) {
if ( pDrive->ptr_ext_part && !pDrive->ext_usable ) {
/* NLS:No usable extended partition found. */
con_print( svarlang_str( 8, 7 ) );
return;
Expand Down

0 comments on commit 18bd576

Please sign in to comment.