Hi,
just a patch to avoid

temperature/tempget.c: In function 'init':
temperature/tempget.c:271: warning: passing argument 3 of 'sysctlnametomib' 
from incompatible pointer type
temperature/tempget.c: In function 'check':
temperature/tempget.c:379: warning: passing argument 4 of 'sysctl' from 
incompatible pointer type

this file should be formatted

thanks
--- src/modules/temperature/tempget.c	2012-12-01 07:59:09.050896556 +0100
+++ src/modules/temperature/tempget.c	2012-12-01 07:58:56.591087282 +0100
@@ -95,7 +95,7 @@
    Eina_List *therms;
    char path[PATH_MAX];
 #ifdef __FreeBSD__
-   int len;
+   size_t len;
 #endif
 
    if ((!sensor_type) || ((!sensor_name) || (sensor_name[0] == 0)))
@@ -360,7 +360,7 @@
    int temp = 0;
    char buf[4096];
 #ifdef __FreeBSD__
-   int len;
+   size_t len;
    size_t ftemp = 0;
 #endif
 
------------------------------------------------------------------------------
Keep yourself connected to Go Parallel: 
INSIGHTS What's next for parallel hardware, programming and related areas?
Interviews and blogs by thought leaders keep you ahead of the curve.
http://goparallel.sourceforge.net
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to