Skip to content

Commit

Permalink
hybrid/docs/03-openmp-datasharing.md: char* argv[] fix
Browse files Browse the repository at this point in the history
  • Loading branch information
juhanikataja committed Jun 27, 2024
1 parent e9f667c commit 1caf951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hybrid/docs/03-openmp-datasharing.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ int main(int argc, char argv[]) {
#include <omp.h>
#include <unistd.h>
int main(int argc, char argv[]) {
int main(int argc, char* argv[]) {
int omp_rank;
#pragma omp parallel
{
Expand Down

0 comments on commit 1caf951

Please sign in to comment.