Skip to content

Commit

Permalink
untabify. try and prevent tab creep in the future
Browse files Browse the repository at this point in the history
  • Loading branch information
hildjj committed Apr 2, 2015
1 parent 3dcb680 commit 64909fb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
@@ -0,0 +1,15 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset
[*.{c,h}]
indent_style = space
indent_size = 2
6 changes: 3 additions & 3 deletions src/cn-create.c
Expand Up @@ -28,8 +28,8 @@ cn_cbor* cn_cbor_map_create(CBOR_CONTEXT_COMMA cn_cbor_errback *errp)
}

cn_cbor* cn_cbor_data_create(const uint8_t* data, int len
CBOR_CONTEXT,
cn_cbor_errback *errp)
CBOR_CONTEXT,
cn_cbor_errback *errp)
{
cn_cbor* ret;
INIT_CB(ret);
Expand Down Expand Up @@ -102,7 +102,7 @@ bool cn_cbor_map_put(cn_cbor* cb_map,
return false;
}

return _append_kv(cb_map, cb_key, cb_value);
return _append_kv(cb_map, cb_key, cb_value);
}

bool cn_cbor_mapput_int(cn_cbor* cb_map,
Expand Down

0 comments on commit 64909fb

Please sign in to comment.