Don't hardcode ascii values
authorRobert Pengelly <robertapengelly@hotmail.com>
Fri, 21 Mar 2025 06:08:31 +0000 (06:08 +0000)
committerRobert Pengelly <robertapengelly@hotmail.com>
Fri, 21 Mar 2025 06:08:31 +0000 (06:08 +0000)
append.c
delete.c
ranlib.c
replace.c

index 8a72a7c0f305b593fee7e76ab51249e059be8cbd..1389010fdf7ab83e8d30a963a4c7eb9366dd7f2c 100644 (file)
--- a/append.c
+++ b/append.c
@@ -29,7 +29,7 @@ void append (FILE *ofp, const char *fname) {
     
     }
     
-    memset (temp, 0x20, 16);
+    memset (temp, ' ', 16);
     temp[0] = '0';
     
     if ((p = strrchr (fname, '/'))) {
@@ -45,7 +45,7 @@ void append (FILE *ofp, const char *fname) {
     memcpy (header.name, name, len);
     
     while (len < 16) {
-        header.name[len++] = 0x20;
+        header.name[len++] = ' ';
     }
     
     memcpy (header.mtime, temp, 12);
@@ -57,12 +57,12 @@ void append (FILE *ofp, const char *fname) {
     bytes = ftell (tfp);
     
     len = sprintf (temp, "%ld", bytes);
-    temp[len] = 0x20;
+    temp[len] = ' ';
     
     memcpy (header.size, temp, 10);
     
-    header.endsig[0] = 0x60;
-    header.endsig[1] = 0x0A;
+    header.endsig[0] = '`';
+    header.endsig[1] = '\n';
     
     need_newline = (bytes % 2);
     
@@ -116,7 +116,7 @@ void append (FILE *ofp, const char *fname) {
     
     if (need_newline) {
     
-        temp[0] = 0x0A;
+        temp[0] = '\n';
         
         if (fwrite (temp, 1, 1, ofp) != 1) {
         
index d8248fbbccaaa04110f80ed223b0e084df5f586b..1a2a33460b0f4ce2723156d10248f12c790fac3e 100644 (file)
--- a/delete.c
+++ b/delete.c
@@ -17,7 +17,7 @@ void delete (FILE *arfp, const char *fname) {
     const char *name;
     char temp[17], *p, *contents;
     
-    if (fwrite ("!<arch>\x0A", 8, 1, tfp) != 1) {
+    if (fwrite ("!<arch>\n", 8, 1, tfp) != 1) {
     
         fclose (tfp);
         
index 992ffbd9c96c9fb77f8817de03f930e87b2cb359..415062ffbc8fa917961aa73320aea79a8dd0b782 100644 (file)
--- a/ranlib.c
+++ b/ranlib.c
@@ -161,9 +161,10 @@ static void elks_get_symbols (void *object, long offset) {
     long sym_start = sizeof (*hdr) + GET_UINT32 (hdr->a_text) + GET_UINT32 (hdr->a_data) + GET_UINT32 (hdr->a_trsize) + GET_UINT32 (hdr->a_drsize);
     long strtab_start = sym_start + GET_UINT32 (hdr->a_syms);
     
+    struct elks_nlist nlist;
+    
     while (sym_start < strtab_start) {
     
-        struct elks_nlist nlist;
         memcpy (&nlist, (char *) object + sym_start, sizeof (nlist));
         
         if (nlist.n_type == 5 || nlist.n_type == 7 || nlist.n_type == 9) {
@@ -273,7 +274,7 @@ void ranlib (FILE *arfp) {
     
     }
     
-    if (fwrite ("!<arch>\x0A", 8, 1, tfp) != 1) {
+    if (fwrite ("!<arch>\n", 8, 1, tfp) != 1) {
     
         fclose (tfp);
         
@@ -303,11 +304,11 @@ void ranlib (FILE *arfp) {
     len = sprintf (temp, "%d", bytes + 4);
 #endif
     
-    temp[len] = 0x20;
+    temp[len] = ' ';
     memcpy (header.size, temp, 10);
     
-    header.endsig[0] = 0x60;
-    header.endsig[1] = 0x0A;
+    header.endsig[0] = '`';
+    header.endsig[1] = '\n';
     
     if (fwrite (&header, sizeof (header), 1, tfp) != 1) {
     
index 31e5dc28ad791c3e59a174ece33fb7813bdb104e..ac89d3f38dc83cd6ddfc1cc094ed645f1d21e201 100644 (file)
--- a/replace.c
+++ b/replace.c
@@ -17,7 +17,7 @@ void replace (FILE *arfp, const char *fname) {
     const char *name;
     char temp[17], *p, *contents;
     
-    if (fwrite ("!<arch>\x0A", 8, 1, tfp) != 1) {
+    if (fwrite ("!<arch>\n", 8, 1, tfp) != 1) {
     
         fclose (tfp);