~ubuntu-branches/ubuntu/precise/wine1.3/precise

« back to all changes in this revision

Viewing changes to dlls/comctl32/ipaddress.c

  • Committer: Package Import Robot
  • Author(s): Scott Ritchie
  • Date: 2012-01-17 09:00:34 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120117090034-eyhpp02jawlvrrkc
Tags: 1.3.37-0ubuntu1
* New upstream release
  - Many changes
* Convert to 3.0 source format
* debian/control:
  - Remove pre-multiarch amd64 build depends
  - Remove quilt build depends
  - Recommend proper gecko versions
* debian/rules:
  - Remove manual dh_quilt patch and unpatch
  - No need to uuencode/uudecode anymore with new source format

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
 
80
80
static void IPADDRESS_UpdateText (const IPADDRESS_INFO *infoPtr)
81
81
{
82
 
    static const WCHAR zero[2] = {'0', 0};
83
 
    static const WCHAR dot[2]  = {'.', 0};
 
82
    static const WCHAR zero[] = {'0', 0};
 
83
    static const WCHAR dot[]  = {'.', 0};
84
84
    WCHAR field[4];
85
85
    WCHAR ip[16];
86
86
    INT i;
339
339
 
340
340
static void IPADDRESS_ClearAddress (const IPADDRESS_INFO *infoPtr)
341
341
{
342
 
    WCHAR nil[1] = { 0 };
 
342
    static const WCHAR nil[] = { 0 };
343
343
    int i;
344
344
 
345
345
    TRACE("\n");