Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Mar 10, 2013
1 parent b6eeea4 commit e45bc20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/x11/edid-parse.c
Expand Up @@ -333,7 +333,7 @@ decode_standard_timings (const uchar *edid, MonitorInfo *info)
if (first != 0x01 && second != 0x01)
{
int w = 8 * (first + 31);
int h;
int h = 0;

switch (get_bits (second, 6, 7))
{
Expand Down

0 comments on commit e45bc20

Please sign in to comment.