Fossil

Diff
Login

Differences From Artifact [0a4f7eba92]:

To Artifact [4f1db2d7e2]:


848
849
850
851
852
853
854

855
856

857
858
859
860
861
862
863
848
849
850
851
852
853
854
855
856

857
858
859
860
861
862
863
864







+

-
+







        length = width = 0;
        break;
      }
      case etHEX: {
        char *zArg = va_arg(ap, char*);
        int szArg = (int)strlen(zArg);
        int szBlob = blob_size(pBlob);
        u8 *aBuf;
        blob_resize(pBlob, szBlob+szArg*2+1);
        u8 *aBuf = (u8*)&blob_buffer(pBlob)[szBlob];
        aBuf = (u8*)&blob_buffer(pBlob)[szBlob];
        encode16((const u8*)zArg, aBuf, szArg);
        length = width = 0;
        break;
      }
      case etERROR:
        buf[0] = '%';
        buf[1] = c;