summaryrefslogtreecommitdiffstats
path: root/TOOLS/bmovl-test.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:26:13 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:34:35 +0300
commit0eb321bf2c1cc0e048faff26a01f86cdd3ec254f (patch)
tree71cb9bd9ed121156d3382066c0722c73189afe04 /TOOLS/bmovl-test.c
parent6d908205fbadbdf7ccdc6c5e0eb918f0b43f16e0 (diff)
downloadmpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.bz2
mpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.xz
Remove trailing whitespace from most files
Diffstat (limited to 'TOOLS/bmovl-test.c')
-rw-r--r--TOOLS/bmovl-test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/TOOLS/bmovl-test.c b/TOOLS/bmovl-test.c
index cb4b4ebf8b..45fa409dce 100644
--- a/TOOLS/bmovl-test.c
+++ b/TOOLS/bmovl-test.c
@@ -15,10 +15,10 @@ blit(int fifo, unsigned char *bitmap, int width, int height,
{
char str[100];
int nbytes;
-
+
sprintf(str, "RGBA32 %d %d %d %d %d %d\n",
width, height, xpos, ypos, alpha, clear);
-
+
if(DEBUG) printf("Sending %s", str);
write(fifo, str, strlen(str));
@@ -33,7 +33,7 @@ set_alpha(int fifo, int width, int height, int xpos, int ypos, int alpha) {
sprintf(str, "ALPHA %d %d %d %d %d\n",
width, height, xpos, ypos, alpha);
-
+
if(DEBUG) printf("Sending %s", str);
write(fifo, str, strlen(str));
@@ -110,7 +110,7 @@ int main(int argc, char **argv) {
for(i=-255; i <= 0; i++)
set_alpha(fifo, image->w, image->h,
(width/2)-(image->w/2), (height/2)-(image->h/2), i);
-
+
// Clean up
free(bitmap);