~ubuntu-branches/ubuntu/raring/virtualbox-ose/raring

« back to all changes in this revision

Viewing changes to src/VBox/Runtime/common/string/strformat.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-01-30 23:27:25 UTC
  • mfrom: (0.3.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20110130232725-2ouajjd2ggdet0zd
Tags: 4.0.2-dfsg-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add Apport hook.
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Drop *-source packages.
* Drop ubuntu-01-fix-build-gcc45.patch, fixed upstream.
* Drop ubuntu-02-as-needed.patch, added to the Debian package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: strformat.cpp $ */
 
1
/* $Id: strformat.cpp 33540 2010-10-28 09:27:05Z vboxsync $ */
2
2
/** @file
3
3
 * IPRT - String Formatter.
4
4
 */
189
189
        fFlags &= ~RTSTR_F_THOUSAND_SEP;
190
190
 
191
191
    /*
192
 
     * Determin value length
 
192
     * Determine value length
193
193
     */
194
194
    cchValue = 0;
195
195
    if (ullValue.ulHi || (fFlags & RTSTR_F_64BIT))
484
484
 
485
485
#ifndef IN_RING3
486
486
                    case 'S':   /* Unicode string as current code page -> Unicode as UTF-8 in GC/R0. */
487
 
                        chArgSize = 'l';
 
487
                        chArgSize = 'l'; /** @todo this is nonsensical, isn't it? */
488
488
                        /* fall thru */
489
489
#endif
490
490
                    case 's':   /* Unicode string as utf8 */