summaryrefslogtreecommitdiff
path: root/nuttx/lib/lib_sprintf.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-05-30 20:06:24 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-05-30 20:06:24 +0000
commit089fb0b4963141512ef007d6a00b76d4f190c28d (patch)
tree274f019eecf69774c70b064e90d4abc20e10d4e5 /nuttx/lib/lib_sprintf.c
parent2cbe4bfe9077608ae738c26dcd69188ecf12cf4d (diff)
downloadpx4-nuttx-089fb0b4963141512ef007d6a00b76d4f190c28d.tar.gz
px4-nuttx-089fb0b4963141512ef007d6a00b76d4f190c28d.tar.bz2
px4-nuttx-089fb0b4963141512ef007d6a00b76d4f190c28d.zip
Extend lib to handle incoming streams
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1840 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/lib/lib_sprintf.c')
-rw-r--r--nuttx/lib/lib_sprintf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/lib/lib_sprintf.c b/nuttx/lib/lib_sprintf.c
index 0a5496b88..f5efe3235 100644
--- a/nuttx/lib/lib_sprintf.c
+++ b/nuttx/lib/lib_sprintf.c
@@ -1,7 +1,7 @@
/****************************************************************************
* lib/lib_sprintf.c
*
- * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -78,18 +78,18 @@
int sprintf (FAR char *buf, const char *fmt, ...)
{
- struct lib_memstream_s memstream;
+ struct lib_memoutstream_s memoutstream;
va_list ap;
int n;
/* Initialize a memory stream to write to the buffer */
- lib_memstream((FAR struct lib_memstream_s *)&memstream, buf, LIB_BUFLEN_UNKNOWN);
+ lib_memoutstream((FAR struct lib_memoutstream_s *)&memoutstream, buf, LIB_BUFLEN_UNKNOWN);
/* Then let lib_vsprintf do the real work */
va_start(ap, fmt);
- n = lib_vsprintf((FAR struct lib_stream_s *)&memstream.public, fmt, ap);
+ n = lib_vsprintf((FAR struct lib_outstream_s *)&memoutstream.public, fmt, ap);
va_end(ap);
return n;
}