Update of /cvsroot/acpi/ospmd/ospmd/ospmd
In directory sc8-pr-cvs1:/tmp/cvs-serv30720/ospmd/ospmd
Modified Files:
properties.h
Log Message:
make the default property value "(null)"
Index: properties.h
===================================================================
RCS file: /cvsroot/acpi/ospmd/ospmd/ospmd/properties.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- properties.h 8 Oct 2002 18:16:39 -0000 1.1.1.1
+++ properties.h 20 Nov 2002 02:42:15 -0000 1.2
@@ -21,7 +21,7 @@
int to_file(char *filename);
// retrieving keyvalues
- string get_prop_string(const char *name, char *defaulvalue = NULL);
+ string get_prop_string(const char *name, char *defaulvalue = "(null)");
const int get_prop_value(const char* name, int defaultvalue = 0);
void set_prop_string(string name, string value);
void set_prop_value(string name, int value);
|