opkg: minor white space and indent fixes
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Mon, 15 Dec 2008 05:12:49 +0000 (05:12 +0000)
committerticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Mon, 15 Dec 2008 05:12:49 +0000 (05:12 +0000)
git-svn-id: http://opkg.googlecode.com/svn/trunk@88 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358

libopkg/opkg.c

index e72693c4f097edce1f0e86737f863be981a10a83..30bde2ef401248d632c99c1246465d6177b0c18f 100644 (file)
@@ -40,8 +40,8 @@ struct _opkg_t
 };
 
 #define opkg_assert(expr) if (!(expr)) { \
-   printf ("opkg: file %s: line %d (%s): Assertation '%s' failed",\
-       __FILE__, __LINE__, __PRETTY_FUNCTION__, #expr); abort(); }
+    printf ("opkg: file %s: line %d (%s): Assertation '%s' failed",\
+            __FILE__, __LINE__, __PRETTY_FUNCTION__, # expr); abort (); }
 
 #define progress(percent) if (progress_callback) progress_callback (opkg, percent, user_data);
 
@@ -98,12 +98,12 @@ struct _curl_cb_data
 
 int
 curl_progress_cb (struct _curl_cb_data *cb_data,
-                   double t, /* dltotal */
-                   double d, /* dlnow */
-                   double ultotal,
-                   double ulnow)
+                  double t,   /* dltotal */
+                  double d,   /* dlnow */
+                  double ultotal,
+                  double ulnow)
 {
-  int p = (t) ? d*100/t : 0;
+  int p = (t) ? d * 100 / t : 0;
   static int prev = -1;
 
   /* prevent the same value being sent twice (can occur due to rounding) */
@@ -114,9 +114,9 @@ curl_progress_cb (struct _curl_cb_data *cb_data,
   if (t < 1)
     return 0;
 
-  (cb_data->cb) (cb_data->opkg,
-      cb_data->start_range + (d/t * ((cb_data->finish_range - cb_data->start_range))),
-      cb_data->user_data);
+  (cb_data->cb)(cb_data->opkg,
+                cb_data->start_range + (d / t * ((cb_data->finish_range - cb_data->start_range))),
+                cb_data->user_data);
 
   return 0;
 }