summaryrefslogtreecommitdiff
path: root/src/system/dlt-system-processes.c
diff options
context:
space:
mode:
authorLassi Marttala <lassi.lm.marttala@partner.bmw.de>2012-06-04 11:53:10 +0200
committerChristian Muck <christian.muck@bmw.de>2012-06-13 23:53:01 +0200
commit54daad6cc95fb66662c894fabb5fd18308eec6e0 (patch)
tree5c20a58a362133d3bdde143851209f17a458bbbc /src/system/dlt-system-processes.c
parent85f564f2b4c580bc151d05559e6ed0614919da8a (diff)
downloadDLT-daemon-54daad6cc95fb66662c894fabb5fd18308eec6e0.tar.gz
[GDLT-93]: Add -Wextra flags for compilation
Fixed all the warnings that popped up with the new flag. Signed-off-by: Christian Muck <christian.muck@bmw.de>
Diffstat (limited to 'src/system/dlt-system-processes.c')
-rw-r--r--src/system/dlt-system-processes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/system/dlt-system-processes.c b/src/system/dlt-system-processes.c
index fc46c97..ee37bfc 100644
--- a/src/system/dlt-system-processes.c
+++ b/src/system/dlt-system-processes.c
@@ -76,7 +76,7 @@ void send_process(LogProcessOptions popts, int n)
/* go through all process files in directory */
DIR *dir = opendir("/proc");
- if(dir>0)
+ if(dir != NULL)
{
while ((dp=readdir(dir)) != NULL)
{
@@ -85,7 +85,7 @@ void send_process(LogProcessOptions popts, int n)
buffer[0] = 0;
sprintf(filename, "/proc/%s/cmdline",dp->d_name);
pFile = fopen(filename, "r");
- if(pFile>0)
+ if(pFile != NULL)
{
bytes = fread(buffer, 1, sizeof(buffer)-1, pFile);
fclose(pFile);
@@ -96,7 +96,7 @@ void send_process(LogProcessOptions popts, int n)
found = 1;
sprintf(filename, "/proc/%s/%s", dp->d_name,popts.Filename[n]);
pFile = fopen(filename, "r");
- if(pFile>0)
+ if(pFile != NULL)
{
bytes = fread(buffer, 1, sizeof(buffer)-1, pFile);
fclose(pFile);