git ssb

0+

cel / foostudio



Commit 6a1a3a4e5c5d9f5be6e212685cd8afae27452414

Deter compiler warnings about int->pointer conversion

cel committed on 10/25/2016, 12:50:19 AM
Parent: 1b5aafc84d39bf3a1c4dbe87e27f6d4938aae848

Files changed

ccdl.cchanged
ccdl.cView
@@ -176,9 +176,9 @@
176176 }
177177
178178 static void *ccdl_watch_run_thread(void *ccdl)
179179 {
180- return (void *)ccdl_watch_run(ccdl);
180 + return (void *)(intptr_t)ccdl_watch_run(ccdl);
181181 }
182182
183183 int ccdl_watch(struct ccdl *ccdl)
184184 {

Built with git-ssb-web