qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Blue Swirl <blauwirbel@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [6023] Use a hex value instead of possibly ambiguous 8 bit character
Date: Sun, 14 Dec 2008 09:30:41 +0000	[thread overview]
Message-ID: <E1LBnJB-00069f-Ox@cvs.savannah.gnu.org> (raw)

Revision: 6023
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6023
Author:   blueswir1
Date:     2008-12-14 09:30:41 +0000 (Sun, 14 Dec 2008)

Log Message:
-----------
Use a hex value instead of possibly ambiguous 8 bit character

Modified Paths:
--------------
    trunk/block-vvfat.c

Modified: trunk/block-vvfat.c
===================================================================
--- trunk/block-vvfat.c	2008-12-14 09:22:41 UTC (rev 6022)
+++ trunk/block-vvfat.c	2008-12-14 09:30:41 UTC (rev 6023)
@@ -1249,7 +1249,7 @@
 	unsigned char* c=(unsigned char*)direntry;
 	int i;
 	for(i=1;i<11 && c[i] && c[i]!=0xff;i+=2)
-#define ADD_CHAR(c) {buffer[j] = (c); if (buffer[j] < ' ') buffer[j] = '\xB0'; j++;}
+#define ADD_CHAR(c) {buffer[j] = (c); if (buffer[j] < ' ') buffer[j] = 0xb0; j++;}
 	    ADD_CHAR(c[i]);
 	for(i=14;i<26 && c[i] && c[i]!=0xff;i+=2)
 	    ADD_CHAR(c[i]);

             reply	other threads:[~2008-12-14  9:30 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-14  9:30 Blue Swirl [this message]
2008-12-14 10:34 ` [Qemu-devel] [6023] Use a hex value instead of possibly ambiguous 8 bit character Johannes Schindelin
2008-12-14 10:41   ` Blue Swirl
2008-12-14 10:54     ` Johannes Schindelin
2008-12-14 11:11       ` Andreas Schwab
2008-12-14 11:23         ` Johannes Schindelin
2008-12-14 11:45           ` Erik de Castro Lopo
2008-12-14 12:00             ` Johannes Schindelin
2008-12-14 17:16               ` Jamie Lokier
2008-12-14 16:10             ` M. Warner Losh
2008-12-14 12:15           ` Blue Swirl
2008-12-14 12:09       ` Blue Swirl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1LBnJB-00069f-Ox@cvs.savannah.gnu.org \
    --to=blauwirbel@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).