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

Commit

Permalink
Fixed compiler warnings in edid-parse.c
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 26, 2012
1 parent 1281e99 commit a95f0dc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/video/x11/edid-parse.c
Expand Up @@ -26,6 +26,7 @@
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <stdio.h>

#define TRUE 1
#define FALSE 0
Expand Down Expand Up @@ -722,6 +723,7 @@ dump_monitor_info (MonitorInfo *info)
printf (" Top Border: %d\n", timing->top_border);
switch (timing->stereo)
{
default:
case NO_STEREO: s = "No Stereo"; break;
case FIELD_RIGHT: s = "Field Sequential, Right on Sync"; break;
case FIELD_LEFT: s = "Field Sequential, Left on Sync"; break;
Expand Down

0 comments on commit a95f0dc

Please sign in to comment.