| Fix filetype struct indentation in ind.c. - geomyidae - A small C-based gopherd. | |
| git clone git://bitreich.org/geomyidae/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfri… | |
| Log | |
| Files | |
| Refs | |
| Tags | |
| README | |
| LICENSE | |
| --- | |
| commit cc8e16b6e451a4c1a5af551102c18e86cb275719 | |
| parent bced8f652806e43a593b632643b38cf7e36d4a81 | |
| Author: parazyd <[email protected]> | |
| Date: Tue, 19 May 2020 13:25:33 +0200 | |
| Fix filetype struct indentation in ind.c. | |
| Signed-off-by: Christoph Lohmann <[email protected]> | |
| Diffstat: | |
| M ind.c | 28 ++++++++++++++-------------- | |
| 1 file changed, 14 insertions(+), 14 deletions(-) | |
| --- | |
| diff --git a/ind.c b/ind.c | |
| @@ -44,20 +44,20 @@ filetype type[] = { | |
| {"bin", "9", handlebin}, | |
| {"tgz", "9", handlebin}, | |
| {"gz", "9", handlebin}, | |
| - {"jpg", "I", handlebin}, | |
| - {"gif", "g", handlebin}, | |
| - {"png", "I", handlebin}, | |
| - {"bmp", "I", handlebin}, | |
| - {"txt", "0", handlebin}, | |
| - {"html", "0", handlebin}, | |
| - {"htm", "0", handlebin}, | |
| - {"xhtml", "0", handlebin}, | |
| - {"css", "0", handlebin}, | |
| - {"md", "0", handlebin}, | |
| - {"c", "0", handlebin}, | |
| - {"sh", "0", handlebin}, | |
| - {"patch", "0", handlebin}, | |
| - {NULL, NULL, NULL}, | |
| + {"jpg", "I", handlebin}, | |
| + {"gif", "g", handlebin}, | |
| + {"png", "I", handlebin}, | |
| + {"bmp", "I", handlebin}, | |
| + {"txt", "0", handlebin}, | |
| + {"html", "0", handlebin}, | |
| + {"htm", "0", handlebin}, | |
| + {"xhtml", "0", handlebin}, | |
| + {"css", "0", handlebin}, | |
| + {"md", "0", handlebin}, | |
| + {"c", "0", handlebin}, | |
| + {"sh", "0", handlebin}, | |
| + {"patch", "0", handlebin}, | |
| + {NULL, NULL, NULL}, | |
| }; | |
| int |