]> git.ipfire.org Git - thirdparty/json-c.git/commitdiff
update indentation
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>
Fri, 27 Nov 2015 15:52:17 +0000 (16:52 +0100)
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>
Fri, 27 Nov 2015 15:52:17 +0000 (16:52 +0100)
json_object.c

index cad3137457ac233e562eadbb57e22a4c256d9505..2b9bef7ee3138d0375e8c98560c9cbf2540501a2 100644 (file)
@@ -161,11 +161,13 @@ static int json_escape_str(struct printbuf *pb, const char *str, int len)
 extern struct json_object* json_object_get(struct json_object *jso)
 {
        if (!jso) return jso;
+
 #if defined __GNUC__
     __sync_add_and_fetch(&jso->_ref_count, 1);
 #else
     ++jso->_ref_count;
 #endif        
+
        return jso;
 }