2009-08-06 Joel Sherrill <joel.sherrill@OARcorp.com>

* support/src/test_support.c: Tinker with longest valid name.
This commit is contained in:
Joel Sherrill
2009-08-06 19:25:17 +00:00
parent c005d41297
commit 288f8498b7
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
2009-08-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* support/src/test_support.c: Tinker with longest valid name.
2009-08-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* support/include/buffer_test_io.h: Use printk on AVR by default.
+1 -1
View File
@@ -36,7 +36,7 @@ const char *Get_Longest_Name()
{
int i;
for ( i=0; i < PATH_MAX; i++ )
for ( i=0; i < PATH_MAX-1; i++ )
Longest_Name[i] = 'L';
Longest_Name[i] = '\0';
return Longest_Name;