Code

indenting fixes
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Thu, 1 May 2008 23:23:35 +0000 (23:23 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Thu, 1 May 2008 23:23:35 +0000 (23:23 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1335 a5681a0c-68f1-0310-ab6d-d61299d08faa

bindings/ruby/main.c
src/rrd.h
src/rrd_info.c
src/rrd_tool.c

index e5a3e80052d4397a12db1d18ac284560b48573b3..b3e512e8f074a4f56a52c0c317d78a720c24fd8f 100644 (file)
@@ -174,7 +174,9 @@ VALUE rb_rrd_infocall(
             free(data->value.u_str);
             break;
         case RD_I_BLO:
-            rb_hash_aset(result, key, rb_str_new(data->value.u_blo.ptr,data->value.u_blo.size));
+            rb_hash_aset(result, key,
+                         rb_str_new(data->value.u_blo.ptr,
+                                    data->value.u_blo.size));
             free(data->value.u_blo.ptr);
             break;
         }
index 3e1a08ad333a7e692eec5f5c6dd827962a899eb7..346836b2afa821bfccf3ea55e2a38ec59c7c5c66 100644 (file)
--- a/src/rrd.h
+++ b/src/rrd.h
@@ -88,8 +88,8 @@ extern    "C" {
 
 /* rrd info interface */
     typedef struct rrd_blob_t {
-        unsigned long    size; /* size of the blob */
-        unsigned char *ptr;  /* pointer */
+        unsigned long size; /* size of the blob */
+        unsigned char *ptr; /* pointer */
     } rrd_blob_t;
 
     enum info_type { RD_I_VAL = 0,
index f9c4604274ab80325c679512e30b04f7f619c2e1..e0bcefa0a95b524a989f76e8934aecffde8000dd 100644 (file)
@@ -73,8 +73,9 @@ info_t
         break;
     case RD_I_BLO:
         next->value.u_blo.size = value.u_blo.size;
-        next->value.u_blo.ptr = malloc(sizeof(unsigned char)*value.u_blo.size);
-        memcpy(next->value.u_blo.ptr,value.u_blo.ptr,value.u_blo.size);
+        next->value.u_blo.ptr =
+            malloc(sizeof(unsigned char) * value.u_blo.size);
+        memcpy(next->value.u_blo.ptr, value.u_blo.ptr, value.u_blo.size);
         break;
     }
     return (next);
@@ -354,7 +355,7 @@ void info_print(
         case RD_I_STR:
             printf("\"%s\"\n", data->value.u_str);
             break;
-        case RD_I_BLO:            
+        case RD_I_BLO:
             printf("BLOB_SIZE:%lu\n", data->value.u_blo.size);
             fwrite(data->value.u_blo.ptr, data->value.u_blo.size, 1, stdout);
             break;
index b16a1942a585ac5b95bbccdcda5da9481c4bd6fb..5eaf10588ae7ddcf1009f48ee23518aeb988ddc6 100644 (file)
@@ -803,6 +803,7 @@ int HandleInputLine(
 
     } else if (strcmp("graphv", argv[1]) == 0) {
         info_t   *grinfo = NULL;    /* 1 to distinguish it from the NULL that rrd_graph sends in */
+
         if (grinfo = rrd_graph_v(argc - 1, &argv[1])) {
             info_print(grinfo);
             info_free(grinfo);