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 e5a3e80..b3e512e 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 3e1a08a..346836b 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 f9c4604..e0bcefa 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 b16a194..5eaf105 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);