From 634770bedbd094b17f3a0883c7b228f8f40bd9df Mon Sep 17 00:00:00 2001
From: Eric Brombaugh <ebrombaugh1@cox.net>
Date: Wed, 12 Apr 2023 18:31:04 -0700
Subject: [PATCH] tabs not spaces

---
 ch32v003fun/ch32v003fun.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ch32v003fun/ch32v003fun.c b/ch32v003fun/ch32v003fun.c
index a99e520..ad3097e 100644
--- a/ch32v003fun/ch32v003fun.c
+++ b/ch32v003fun/ch32v003fun.c
@@ -931,9 +931,9 @@ int _write(int fd, const char *buf, int size)
 int putchar(int c)
 {
 	int timeout = 16000;
-    while( ((*DMDATA0) & 0x80) ) if( timeout-- == 0 ) return 0;
-    *DMDATA0 = 0x85 | ((const char)c<<8);
-    return 1;
+	while( ((*DMDATA0) & 0x80) ) if( timeout-- == 0 ) return 0;
+	*DMDATA0 = 0x85 | ((const char)c<<8);
+	return 1;
 }
 
 void SetupDebugPrintf()
-- 
GitLab