summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorJohann Friedrichs <johann.friedrichs@web.de>2018-03-21 12:14:55 +0100
committerJohann Friedrichs <johann.friedrichs@web.de>2018-03-21 12:14:55 +0100
commite8a0e569152c50d6084f252d12854b8fd4e74466 (patch)
tree5a90ef7ea08ff2096df157ca109c5268cdc04903 /main.c
parent9c7d95ff8d6ba965cb23147507a859b1fd0491d6 (diff)
downloadvdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.gz
vdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.bz2
unified indentation
Diffstat (limited to 'main.c')
-rw-r--r--main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/main.c b/main.c
index 00d3122..9b24e1c 100644
--- a/main.c
+++ b/main.c
@@ -35,19 +35,19 @@ The project's page is at http://winni.vdr-developer.org/epgsearch
// A function adding two integers and returning the result
int SampleAddInt(int i1, int i2)
{
- return i1 + i2;
+ return i1 + i2;
}
// A function doing nothing ;)
void SampleFunction1()
{
- // insert code here
+ // insert code here
}
// A function always returning zero
int SampleFunction2()
{
- // insert code here
+ // insert code here
- return 0;
+ return 0;
}