gdiplus: Remove unreachable break after return (Smatch).

This commit is contained in:
Michael Stefaniuc 2012-08-01 01:14:15 +02:00 committed by Alexandre Julliard
parent 7819ce61b5
commit 60bef14094
1 changed files with 0 additions and 1 deletions

View File

@ -379,7 +379,6 @@ REAL pixels_to_units(REAL pixels, GpUnit unit, REAL dpi)
return pixels * point_per_inch / dpi;
case UnitInch:
return pixels / dpi;
break;
case UnitDocument:
return pixels * 300.0 / dpi;
case UnitMillimeter: