- fix indentation

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2019-04-16 23:15:58 +02:00
committed by Thilo Graf
parent 973e8c3a7a
commit 1b89f9241f

View File

@@ -1105,10 +1105,10 @@ void get_osd_buf(unsigned char *osd_data)
memcpy(osd_data,lfb,fix_screeninfo.line_length*var_screeninfo.yres); memcpy(osd_data,lfb,fix_screeninfo.line_length*var_screeninfo.yres);
} }
if (munmap(lfb, fix_screeninfo.smem_len) == -1) if (munmap(lfb, fix_screeninfo.smem_len) == -1)
{ {
perror("Error un-mmapping"); perror("Error un-mmapping");
} }
close(fb); close(fb);
} }