X-Git-Url: http://wpitchoune.net/gitweb/?p=psensor-pkg-debian.git;a=blobdiff_plain;f=src%2Flib%2Fnvidia.c;h=4f411e98f1794ff0922c4510c3b555601eb85642;hp=99105218e42768392a1616745f113bc64ee31442;hb=refs%2Ftags%2Fupstream%2F1.0.1;hpb=162a992f0f857ef0969d64206b9762f0d054528f diff --git a/src/lib/nvidia.c b/src/lib/nvidia.c index 9910521..4f411e9 100644 --- a/src/lib/nvidia.c +++ b/src/lib/nvidia.c @@ -33,9 +33,7 @@ Display *display; -/* - Returns the temperature (Celcius) of a NVidia GPU. -*/ +/* Returns the temperature (Celsius) of a NVIDIA GPU. */ static int get_temp(struct psensor *sensor) { int temp; @@ -65,14 +63,14 @@ static struct psensor *create_sensor(int id, int values_len) sprintf(name, "GPU%d", id); - sid = malloc(strlen("nvidia") + 1 + strlen(name) + 1); - sprintf(sid, "nvidia %s", name); + sid = malloc(strlen("NVIDIA") + 1 + strlen(name) + 1); + sprintf(sid, "NVIDIA %s", name); t = SENSOR_TYPE_NVCTRL | SENSOR_TYPE_GPU | SENSOR_TYPE_TEMP; s = psensor_create(sid, strdup(name), - strdup("Nvidia GPU"), + strdup(_("NVIDIA GPU")), t, values_len); @@ -83,9 +81,9 @@ static struct psensor *create_sensor(int id, int values_len) /* Opens connection to X server and returns the number - of NVidia GPUs. + of NVIDIA GPUs. - Return 0 if no NVidia gpus or cannot get information. + Return 0 if no NVIDIA gpus or cannot get information. */ static int init() {