~ubuntu-branches/ubuntu/utopic/tinymux/utopic

« back to all changes in this revision

Viewing changes to src/unparse.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Ervin Hearn III
  • Date: 2008-04-11 23:18:25 UTC
  • mfrom: (1.1.5 upstream) (6.1.1 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080411231825-1pq4trckagyk8roo
Tags: 2.6.5.27-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// unparse.cpp
2
2
//
3
 
// $Id: unparse.cpp,v 1.7 2006/01/07 02:09:12 sdennis Exp $
 
3
// $Id: unparse.cpp 8 2006-09-05 01:55:58Z brazilofmux $
4
4
//
5
5
 
6
6
#include "copyright.h"
34
34
    case HOME:
35
35
        return (char *)"-3";
36
36
    default:
37
 
        sprintf(buf, "(#%d)", loc);
 
37
        mux_sprintf(buf, SBUF_SIZE, "(#%d)", loc);
38
38
        return buf;
39
39
    }
40
40
}