changeset 2289:125d60dc0659

Fix annoying TABs and missing newlines at EOF
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 22 Mar 2012 10:50:34 +0100
parents cad7ebf06628
children c26e8106b9b3
files src/file-test.c src/fltk-test.cpp src/json-c.mk src/libffi-test.c src/mpfr.mk
diffstat 5 files changed, 19 insertions(+), 19 deletions(-) [+]
line wrap: on
line diff
--- a/src/file-test.c	Tue Mar 20 16:29:23 2012 +0100
+++ b/src/file-test.c	Thu Mar 22 10:50:34 2012 +0100
@@ -6,9 +6,9 @@
 
 int main(int argc, char *argv[])
 {
-	(void)argc;
-	(void)argv;
+    (void)argc;
+    (void)argv;
 
-	fprintf(stdout, "magic file from %s\n", magic_getpath(NULL, 0));
-	return 0;
-}
\ No newline at end of file
+    fprintf(stdout, "magic file from %s\n", magic_getpath(NULL, 0));
+    return 0;
+}
--- a/src/fltk-test.cpp	Tue Mar 20 16:29:23 2012 +0100
+++ b/src/fltk-test.cpp	Thu Mar 22 10:50:34 2012 +0100
@@ -8,13 +8,13 @@
 
 int main(int argc, char **argv)
 {
-	Fl_Window *window = new Fl_Window(340,180);
-	Fl_Box *box = new Fl_Box(20,40,300,100,"Hello, World!");
-	box->box(FL_UP_BOX);
-	box->labelfont(FL_BOLD+FL_ITALIC);
-	box->labelsize(36);
-	box->labeltype(FL_SHADOW_LABEL);
-	window->end();
-	window->show(argc, argv);
-	return Fl::run();
-}
\ No newline at end of file
+    Fl_Window *window = new Fl_Window(340,180);
+    Fl_Box *box = new Fl_Box(20,40,300,100,"Hello, World!");
+    box->box(FL_UP_BOX);
+    box->labelfont(FL_BOLD+FL_ITALIC);
+    box->labelsize(36);
+    box->labeltype(FL_SHADOW_LABEL);
+    window->end();
+    window->show(argc, argv);
+    return Fl::run();
+}
--- a/src/json-c.mk	Tue Mar 20 16:29:23 2012 +0100
+++ b/src/json-c.mk	Thu Mar 22 10:50:34 2012 +0100
@@ -20,6 +20,6 @@
         --host='$(TARGET)' \
         --prefix='$(PREFIX)/$(TARGET)' \
         --build="`config.guess`"\
-		CFLAGS=-Wno-error
+        CFLAGS=-Wno-error
     $(MAKE) -C '$(1)' -j '$(JOBS)' install
 endef
--- a/src/libffi-test.c	Tue Mar 20 16:29:23 2012 +0100
+++ b/src/libffi-test.c	Thu Mar 22 10:50:34 2012 +0100
@@ -19,7 +19,7 @@
     values[0] = &s;
 
     if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
-    		       &ffi_type_uint, args) == FFI_OK)
+                           &ffi_type_uint, args) == FFI_OK)
     {
         s = "Hello World!";
         ffi_call(&cif, FFI_FN(puts), &rc, values);
--- a/src/mpfr.mk	Tue Mar 20 16:29:23 2012 +0100
+++ b/src/mpfr.mk	Thu Mar 22 10:50:34 2012 +0100
@@ -27,8 +27,8 @@
         --disable-shared \
         --prefix='$(PREFIX)/$(TARGET)' \
         --enable-threads=win32 \
-	--with-gmp-include='$(PREFIX)/$(TARGET)/include/'
-	--with-gmp-lib='$(PREFIX)/$(TARGET)/lib/'
+        --with-gmp-include='$(PREFIX)/$(TARGET)/include/'
+        --with-gmp-lib='$(PREFIX)/$(TARGET)/lib/'
     $(MAKE) -C '$(1)' -j '$(JOBS)'
     $(MAKE) -C '$(1)' -j '$(JOBS)' install
 endef