~ubuntu-branches/ubuntu/breezy/xscreensaver/breezy

« back to all changes in this revision

Viewing changes to utils/xshm.c

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2005-10-11 21:00:42 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20051011210042-u7q6zslgevdxspr3
Tags: 4.21-4ubuntu17
updated pt_BR again, fixed to UTF-8 

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
   needed, anyway.)
22
22
 
23
23
   If you don't have man pages for this extension, see
24
 
   http://www.physik.uni-regensburg.de/~scs22156/sofie-0.2/mit-shm.html
25
 
   or in the R6 sources as "xc/doc/specs/Xext/mit-shm.ms", for example,
26
 
   ftp://ftp.x.org/pub/R6.4/xc/doc/specs/Xext/mit-shm.ms
 
24
   http://www.x.org/X11R6.8.1/docs/Xext/
27
25
 
28
26
   (This document seems not to ever remain available on the web in one place
29
27
   for very long; you can search for it by the title, "MIT-SHM -- The MIT
215
213
  if (status != 0)
216
214
    {
217
215
      char buf[1024];
218
 
      sprintf (buf, "%s: shmdt(0x%x) failed", progname, shm_info->shmaddr);
 
216
      sprintf (buf, "%s: shmdt(0x%lx) failed", progname,
 
217
               (unsigned long) shm_info->shmaddr);
219
218
      perror(buf);
220
219
    }
221
220
#ifdef DEBUG